gnu: ruby-pandoc-ruby: Use pandoc instead of ghc-pandoc.
[jackhill/guix/guix.git] / gnu / packages / gnu-pw-mgr.scm
CommitLineData
889a87f0
EB
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2013 Eric Bavier <bavier@member.fsf.org>
f6176e78 3;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
a181e858 4;;; Copyright © 2016, 2018 Efraim Flashner <efraim@flashner.co.il>
889a87f0
EB
5;;;
6;;; This file is part of GNU Guix.
7;;;
8;;; GNU Guix is free software; you can redistribute it and/or modify it
9;;; under the terms of the GNU General Public License as published by
10;;; the Free Software Foundation; either version 3 of the License, or (at
11;;; your option) any later version.
12;;;
13;;; GNU Guix is distributed in the hope that it will be useful, but
14;;; WITHOUT ANY WARRANTY; without even the implied warranty of
15;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16;;; GNU General Public License for more details.
17;;;
18;;; You should have received a copy of the GNU General Public License
19;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
20
21(define-module (gnu packages gnu-pw-mgr)
22 #:use-module (guix packages)
23 #:use-module (guix licenses)
24 #:use-module (guix download)
25 #:use-module (guix build-system gnu)
26 #:use-module (gnu packages)
ed8a724b
MW
27 #:use-module (gnu packages base)
28 #:use-module (gnu packages autogen))
889a87f0
EB
29
30(define-public gnu-pw-mgr
31 (package
32 (name "gnu-pw-mgr")
a5896da3 33 (version "2.4.2")
889a87f0
EB
34 (source
35 (origin
36 (method url-fetch)
8bae41a4 37 (uri (string-append "mirror://gnu/gnu-pw-mgr/gnu-pw-mgr-"
ed8a724b 38 version ".tar.xz"))
889a87f0
EB
39 (sha256
40 (base32
a5896da3 41 "1yvdzc5w37qrjrkby5699ygj9bhkvgi3zk9k9jcjry1j6b7wdl17"))))
889a87f0 42 (build-system gnu-build-system)
a181e858
EF
43 (arguments
44 '(#:phases
45 (modify-phases %standard-phases
46 (add-after 'patch-source-shebangs 'patch-more-shebangs
47 (lambda _
48 (substitute* "tests/dom.test"
49 (("/usr/bin/printf") (which "printf")))
50 #t)))))
ed8a724b 51 (native-inputs
98e9ed8a 52 `(("which" ,which)))
6fd52309 53 (home-page "https://www.gnu.org/software/gnu-pw-mgr/")
889a87f0
EB
54 (synopsis "Retrieve login credentials without recording passwords")
55 (description
56 "This program is designed to make it easy to reconstruct difficult
57passwords when they are needed while limiting the risk of attack. The
58user of this program inputs a self-defined transformation of a web
59site URL and obtains the password and user name hint for that web
60site.")
61 (license gpl3+)))