diff options
author | Fredrik Salomonsson <plattfot@posteo.net> | 2021-01-31 13:26:49 -0800 |
---|---|---|
committer | Fredrik Salomonsson <plattfot@posteo.net> | 2021-01-31 16:55:15 -0800 |
commit | 241efa432e41cf60cbaea5f467c0218deb82febe (patch) | |
tree | 7d70b9154cc85e7b8ae92b17ebe18e2e8cda0267 /guix.scm | |
parent | 5c0da1efda771f25d739e81e9bb0f84601f853c6 (diff) | |
download | pinentry-rofi-241efa432e41cf60cbaea5f467c0218deb82febe.tar.gz |
Add installcheck to make sure the pinentry-rofi script works
Diffstat (limited to 'guix.scm')
-rw-r--r-- | guix.scm | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -57,7 +57,10 @@ (wrap-program (string-append bin "pinentry-rofi") (list "PATH" ":" 'prefix `(,rofi-bin))) - #t)))))))) + #t))))) + (add-after 'compress-documentation 'installcheck + (lambda* rest + (invoke "make" "installcheck")))))) (native-inputs `(("autoconf" ,autoconf) ("autoconf-archive" ,autoconf-archive) |