blob: cf2288bb6eb0ea97811e962095c484ef29ff919a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
nix_noinst_scripts := \
$(d)/nix-profile.sh
noinst-scripts += $(nix_noinst_scripts)
profiledir = $(sysconfdir)/profile.d
$(eval $(call install-file-as, $(d)/nix-profile.sh, $(profiledir)/nix.sh, 0644))
$(eval $(call install-file-as, $(d)/nix-profile.fish, $(profiledir)/nix.fish, 0644))
clean-files += $(nix_noinst_scripts)
|