another machine through ssh.  E.g.,
    $ nix-copy-closure xyzzy $(which svn)
  copies the closure of Subversion to machine `xyzzy'.  This is like
  `nix-pack-closure $(which svn) | ssh xyzzy', but it's much more
  efficient since it only copies those paths that are missing on the
  target machine.
		
	
			
		
			
				
	
	
		
			35 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			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 \
 | |
|   nix-copy-closure
 | |
| 
 | |
| noinst_SCRIPTS = nix-profile.sh generate-patches.pl find-runtime-roots.pl
 | |
| 
 | |
| nix-pull nix-push: readmanifest.pm readconfig.pm download-using-manifests.pl
 | |
| 
 | |
| install-exec-local: readmanifest.pm download-using-manifests.pl find-runtime-roots.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_DATA) readconfig.pm $(DESTDIR)$(libexecdir)/nix 
 | |
| 	$(INSTALL_PROGRAM) download-using-manifests.pl $(DESTDIR)$(libexecdir)/nix 
 | |
| 	$(INSTALL_PROGRAM) find-runtime-roots.pl $(DESTDIR)$(libexecdir)/nix 
 | |
| 	$(INSTALL_PROGRAM) generate-patches.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 \
 | |
|   readconfig.pm.in \
 | |
|   nix-build.in \
 | |
|   download-using-manifests.pl.in \
 | |
|   generate-patches.pl.in \
 | |
|   nix-pack-closure.in nix-unpack-closure.in \
 | |
|   nix-copy-closure.in \
 | |
|   find-runtime-roots.pl.in
 |