diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-02-19 18:48:59 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-02-19 23:43:39 +0100 |
commit | e54b381dd4080e70fe2fca4428ea5be3ff6ba63b (patch) | |
tree | b6a055e95c80ad7f9efd2588d2205658cceae962 /gnu/packages/crypto.scm | |
parent | bfa3caa2fb1436c4d0e24036a9ea60ccc19aabae (diff) | |
download | patches-e54b381dd4080e70fe2fca4428ea5be3ff6ba63b.tar patches-e54b381dd4080e70fe2fca4428ea5be3ff6ba63b.tar.gz |
gnu: crypto++: Returt #t from all phases.
* gnu/packages/crypto.scm (crypto++)[arguments]: Return #t from
‘install-pkg-config’.
Diffstat (limited to 'gnu/packages/crypto.scm')
-rw-r--r-- | gnu/packages/crypto.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/crypto.scm b/gnu/packages/crypto.scm index aa65774c78..1c665c82bd 100644 --- a/gnu/packages/crypto.scm +++ b/gnu/packages/crypto.scm @@ -663,7 +663,8 @@ data on your platform, so the seed itself will be as random as possible. "Description: Class library of cryptographic schemes" "Version: " ,version "\n" "Libs: -L${libdir} -lcryptopp\n" - "Cflags: -I${includedir}\n")))))))))) + "Cflags: -I${includedir}\n")) + #t)))))))) (native-inputs `(("unzip" ,unzip))) (home-page "https://cryptopp.com/") |