diff options
author | Marius Bakke <marius@gnu.org> | 2020-06-11 23:30:32 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2020-06-11 23:30:32 +0200 |
commit | 9b043df7403a10b35b93d133aac796fd277a7339 (patch) | |
tree | f712922d9348ececc0d84e360ac653df3b8d2473 /gnu/packages/password-utils.scm | |
parent | d79ec4fd343bc2a72652aa3a4b4ae14bd8df88ac (diff) | |
parent | 648ae62112f62bc2106fb36d45c83fda787d3bed (diff) | |
download | guix-9b043df7403a10b35b93d133aac796fd277a7339.tar guix-9b043df7403a10b35b93d133aac796fd277a7339.tar.gz |
Merge branch 'master' into staging
Diffstat (limited to 'gnu/packages/password-utils.scm')
-rw-r--r-- | gnu/packages/password-utils.scm | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/gnu/packages/password-utils.scm b/gnu/packages/password-utils.scm index a59fb9dc75..6bd1e94c91 100644 --- a/gnu/packages/password-utils.scm +++ b/gnu/packages/password-utils.scm @@ -581,7 +581,7 @@ key URIs using the standard otpauth:// scheme.") (define-public qtpass (package (name "qtpass") - (version "1.2.3") + (version "1.3.2") (source (origin (method git-fetch) @@ -591,10 +591,15 @@ key URIs using the standard otpauth:// scheme.") (file-name (git-file-name name version)) (sha256 (base32 - "1vfhfyccrxq9snyvayqfzm5rqik8ny2gysyv7nipc91kvhq3bhky")))) + "0748hjvhjrybi33ci3c8hcr74k9pdrf5jv8npf9hrsrmdyy1kr9x")))) (build-system gnu-build-system) (arguments - `(#:phases + `(#:modules ((guix build gnu-build-system) + (guix build qt-utils) + (guix build utils)) + #:imported-modules (,@%gnu-build-system-modules + (guix build qt-utils)) + #:phases (modify-phases %standard-phases (replace 'configure (lambda* (#:key inputs outputs #:allow-other-keys) @@ -630,6 +635,10 @@ key URIs using the standard otpauth:// scheme.") (string-append icons "/qtpass-icon.svg")) (install-file "qtpass.1" man) #t))) + (add-after 'install 'wrap-qt + (lambda* (#:key outputs #:allow-other-keys) + (wrap-qt-program (assoc-ref outputs "out") "qtpass") + #t)) (add-before 'check 'check-setup ;; Make Qt render "offscreen", required for tests. (lambda _ |