aa3bc3d5dc
Substitution is now simply a Store -> Store copy operation, most typically from BinaryCacheStore to LocalStore.
28 lines
896 B
Makefile
28 lines
896 B
Makefile
nix_bin_scripts := \
|
|
$(d)/nix-build \
|
|
$(d)/nix-channel \
|
|
$(d)/nix-copy-closure \
|
|
$(d)/nix-install-package \
|
|
$(d)/nix-push
|
|
|
|
bin-scripts += $(nix_bin_scripts)
|
|
|
|
nix_noinst_scripts := \
|
|
$(d)/build-remote.pl \
|
|
$(d)/find-runtime-roots.pl \
|
|
$(d)/resolve-system-dependencies.pl \
|
|
$(d)/nix-http-export.cgi \
|
|
$(d)/nix-profile.sh \
|
|
$(d)/nix-reduce-build
|
|
|
|
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-program-in, $(d)/find-runtime-roots.pl, $(libexecdir)/nix))
|
|
$(eval $(call install-program-in, $(d)/build-remote.pl, $(libexecdir)/nix))
|
|
$(eval $(call install-program-in, $(d)/resolve-system-dependencies.pl, $(libexecdir)/nix))
|
|
$(eval $(call install-symlink, nix-build, $(bindir)/nix-shell))
|
|
|
|
clean-files += $(nix_bin_scripts) $(nix_noinst_scripts)
|