e4d4969ae9
useful way to transfer the closure of a store path to another machine. These commands provide functionality previously possible through `nix-push --copy'. However, they are much more convenient in many situations (though possibly less efficient). Example: $ nix-pack-closure /nix/store/hj232g1r...-subversion-1.3.0 > svn.closure (on another machine:) $ nix-unpack-closure < svn.closure Note that Subversion is added to the store, but not installed into a user environment. One should do `nix-env -i /nix/store/hj232g1r...-subversion-1.3.0' for that. Another example: copy the application Azureus to the machine `scratchy' through ssh: $ nix-pack-closure $(which azureus) | ssh scratchy nix-unpack-closure
29 lines
1,014 B
Makefile
29 lines
1,014 B
Makefile
bin_SCRIPTS = nix-collect-garbage \
|
|
nix-pull nix-push nix-prefetch-url \
|
|
nix-install-package nix-channel nix-build \
|
|
nix-pack-closure nix-unpack-closure
|
|
|
|
noinst_SCRIPTS = nix-profile.sh generate-patches.pl
|
|
|
|
nix-pull nix-push: readmanifest.pm download-using-manifests.pl
|
|
|
|
install-exec-local: readmanifest.pm download-using-manifests.pl
|
|
$(INSTALL) -d $(DESTDIR)$(sysconfdir)/profile.d
|
|
$(INSTALL_PROGRAM) nix-profile.sh $(DESTDIR)$(sysconfdir)/profile.d/nix.sh
|
|
$(INSTALL) -d $(DESTDIR)$(libexecdir)/nix
|
|
$(INSTALL_DATA) readmanifest.pm $(DESTDIR)$(libexecdir)/nix
|
|
$(INSTALL_PROGRAM) download-using-manifests.pl $(DESTDIR)$(libexecdir)/nix
|
|
$(INSTALL) -d $(DESTDIR)$(sysconfdir)/nix
|
|
|
|
include ../substitute.mk
|
|
|
|
EXTRA_DIST = nix-collect-garbage.in \
|
|
nix-pull.in nix-push.in nix-profile.sh.in \
|
|
nix-prefetch-url.in nix-install-package.in \
|
|
nix-channel.in \
|
|
readmanifest.pm.in \
|
|
nix-build.in \
|
|
download-using-manifests.pl.in \
|
|
generate-patches.pl.in \
|
|
nix-pack-closure.in nix-unpack-closure.in
|