forked from lix-project/lix
7dd91d3779
sharing package directories (i.e., the result of building a Nix descriptor). `nix-pull-prebuilts' obtains a list of all known prebuilts by consulting the paths and URLs specified in $prefix/etc/nix/prebuilts.conf. The mappings ($pkghash, $prebuilthash) and ($prebuilthash, $location) are registered with Nix so that it can use the prebuilt with hash $prebuilthash when installing a package with hash $pkghash by downloading and unpacking $location. `nix-push-prebuilts' creates prebuilts for all packages for which no prebuilt is known to exist. It can then optionally upload these to the network through rsync. `nix-[pull|push]-prebuilts' just provide a policy. Nix provides the mechanism through the `nix [export|regprebuilt|regurl]' commands.
21 lines
606 B
Makefile
21 lines
606 B
Makefile
bin_PROGRAMS = nix fix
|
|
|
|
nix_SOURCES = nix.cc md5.c
|
|
nix_CXXFLAGS = -DSYSTEM=\"@host@\" -Wall
|
|
nix_LDADD = -ldb_cxx-4 -lATerm
|
|
|
|
fix_SOURCES = fix.cc md5.c
|
|
fix_CXXFLAGS = -DSYSTEM=\"@host@\" -Wall
|
|
fix_LDADD = -lATerm
|
|
|
|
install-data-local:
|
|
$(INSTALL) -d $(localstatedir)/nix
|
|
$(INSTALL) -d $(localstatedir)/nix/descriptors
|
|
$(INSTALL) -d $(localstatedir)/nix/sources
|
|
$(INSTALL) -d $(localstatedir)/nix/links
|
|
$(INSTALL) -d $(localstatedir)/nix/prebuilts
|
|
$(INSTALL) -d $(localstatedir)/nix/prebuilts/imports
|
|
$(INSTALL) -d $(localstatedir)/nix/prebuilts/exports
|
|
$(INSTALL) -d $(prefix)/pkg
|
|
$(bindir)/nix init
|