forked from lix-project/lix
759947bf72
On nix-env -qa -f '<nixpkgs>', this reduces maximum RSS by 20970 KiB and runtime by 0.8%. This is mostly because we're not parsing the hash part as a hash anymore (just validating that it consists of base-32 characters). Also, replace storePathToHash() by StorePath::hashPart().
12 lines
224 B
Makefile
12 lines
224 B
Makefile
libraries += libfetchers
|
|
|
|
libfetchers_NAME = libnixfetchers
|
|
|
|
libfetchers_DIR := $(d)
|
|
|
|
libfetchers_SOURCES := $(wildcard $(d)/*.cc)
|
|
|
|
libfetchers_CXXFLAGS += -I src/libutil -I src/libstore
|
|
|
|
libfetchers_LIBS = libutil libstore
|