gnu: xterm: Update to 320.
[jackhill/guix/guix.git] / gnu / packages / password-utils.scm
CommitLineData
de63b20e
SS
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2015 Steve Sprang <scs@stevesprang.com>
e8647227 3;;; Copyright © 2015 Efraim Flashner <efraim@flashner.co.il>
de63b20e
SS
4;;;
5;;; This file is part of GNU Guix.
6;;;
7;;; GNU Guix is free software; you can redistribute it and/or modify it
8;;; under the terms of the GNU General Public License as published by
9;;; the Free Software Foundation; either version 3 of the License, or (at
10;;; your option) any later version.
11;;;
12;;; GNU Guix is distributed in the hope that it will be useful, but
13;;; WITHOUT ANY WARRANTY; without even the implied warranty of
14;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15;;; GNU General Public License for more details.
16;;;
17;;; You should have received a copy of the GNU General Public License
18;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
19
20(define-module (gnu packages password-utils)
21 #:use-module ((guix licenses) #:prefix license:)
e8647227 22 #:use-module (guix build-system cmake)
de63b20e
SS
23 #:use-module (guix build-system gnu)
24 #:use-module (guix download)
e8647227
EF
25 #:use-module (guix packages)
26 #:use-module (gnu packages compression)
27 #:use-module (gnu packages gnupg)
28 #:use-module (gnu packages qt)
29 #:use-module (gnu packages xorg))
de63b20e
SS
30
31(define-public pwgen
32 (package
33 (name "pwgen")
34 (version "2.07")
35 (source
36 (origin
37 (method url-fetch)
38 (uri (string-append "mirror://sourceforge/pwgen/pwgen-"
39 version ".tar.gz"))
40 (sha256
41 (base32 "0mhmw700kkh238fzivcwnwi94bj9f3h36yfh3k3j2v19b0zmjx7b"))))
42 (build-system gnu-build-system)
43 (arguments
44 `(#:tests? #f)) ; no test suite
45 (home-page "http://pwgen.sourceforge.net/")
46 (synopsis "Password generator")
47 (description "Pwgen generates passwords which can be easily memorized by a
48human.")
49 (license license:gpl2)))
e8647227
EF
50
51(define-public keepassx
52 (package
53 (name "keepassx")
54 (version "2.0-beta2")
55 (source
56 (origin
57 (method url-fetch)
58 (uri (string-append "https://github.com/keepassx/keepassx/archive/"
59 version ".tar.gz"))
60 (file-name (string-append name "-" version ".tar.gz"))
61 (sha256
62 (base32 "0ljf9ws3wh62zd0gyb0vk2qw6pqsmxrlybrfs5mqahf44q92ca2q"))))
63 (build-system cmake-build-system)
64 (inputs
65 `(("libgcrypt" ,libgcrypt)
66 ("libxtst" ,libxtst)
67 ("qt" ,qt-4)))
68 (native-inputs
69 `(("zlib" ,zlib)))
70 (home-page "https://www.keepassx.org")
71 (synopsis "Password manager")
72 (description "KeePassX is a password manager or safe which helps you to
73manage your passwords in a secure way. You can put all your passwords in one
74database, which is locked with one master key or a key-file which can be stored
75on an external storage device. The databases are encrypted using the
76algorithms AES or Twofish.")
77 ;; Non functional parts use various licences.
78 (license license:gpl3)))