e0def5bc4b
Sodium's Ed25519 signatures are much shorter than OpenSSL's RSA signatures. Public keys are also much shorter, so they're now specified directly in the nix.conf option ‘binary-cache-public-keys’. The new command ‘nix-store --generate-binary-cache-key’ generates and prints a public and secret key.
11 lines
234 B
Makefile
11 lines
234 B
Makefile
programs += nix-store
|
|
|
|
nix-store_DIR := $(d)
|
|
|
|
nix-store_SOURCES := $(wildcard $(d)/*.cc)
|
|
|
|
nix-store_LIBS = libmain libstore libutil libformat
|
|
|
|
nix-store_LDFLAGS = -lbz2 -pthread $(SODIUM_LIBS)
|
|
|
|
nix-store_CXXFLAGS = -DCURL=\"$(curl)\"
|