diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2019-10-15 22:30:49 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2019-10-15 22:30:49 +0300 |
commit | 50bfb70b73b5137fa156d25cc7b54f700cc91f08 (patch) | |
tree | 354c95313127827c023dfcda484f027e1f273967 | |
parent | 747aa6c46baeb02bb75e5c199dd005eb9dd52785 (diff) | |
download | guix-50bfb70b73b5137fa156d25cc7b54f700cc91f08.tar guix-50bfb70b73b5137fa156d25cc7b54f700cc91f08.tar.gz |
gnu: pwsafe: Move googletest to native-inputs.
* gnu/packages/password-utils.scm (pwsafe)[inputs]: Move googletest ...
[native-inputs]: ... to here.
-rw-r--r-- | gnu/packages/password-utils.scm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gnu/packages/password-utils.scm b/gnu/packages/password-utils.scm index ba488dde27..efca02ff68 100644 --- a/gnu/packages/password-utils.scm +++ b/gnu/packages/password-utils.scm @@ -195,12 +195,13 @@ algorithms AES or Twofish.") (base32 "01kfssd2vr64yh4dqhch58x36n3aj3hpj5n560f41rsxym69c6qs")) (file-name (git-file-name name version)))) (build-system cmake-build-system) - (native-inputs `(("gettext" ,gettext-minimal) - ("perl" ,perl) - ("zip" ,zip))) + (native-inputs + `(("gettext" ,gettext-minimal) + ("gtest" ,googletest) + ("perl" ,perl) + ("zip" ,zip))) (inputs `(("curl" ,curl) ("file" ,file) - ("gtest" ,googletest) ("libuuid" ,util-linux) ("libxt" ,libxt) ("libxtst" ,libxtst) |