From: Efraim Flashner <efraim@flashner.co.il>
To: guix-devel@gnu.org
Subject: Re: [PATCH] gnu: Add keepassx.
Date: Wed, 16 Sep 2015 14:02:03 +0300 [thread overview]
Message-ID: <20150916140203.26ff781e@debian-netbook> (raw)
In-Reply-To: <1442398930-4941-1-git-send-email-efraim@flashner.co.il>
[-- Attachment #1.1: Type: text/plain, Size: 2351 bytes --]
forgot the copyright line
On Wed, 16 Sep 2015 13:22:10 +0300
Efraim Flashner <efraim@flashner.co.il> wrote:
> * gnu/packages/password-utils.scm (keepassx): New variable.
> ---
> gnu/packages/password-utils.scm | 35 ++++++++++++++++++++++++++++++++++-
> 1 file changed, 34 insertions(+), 1 deletion(-)
>
> diff --git a/gnu/packages/password-utils.scm
> b/gnu/packages/password-utils.scm index 4aef371..4ea38ed 100644
> --- a/gnu/packages/password-utils.scm
> +++ b/gnu/packages/password-utils.scm
> @@ -19,8 +19,13 @@
> (define-module (gnu packages password-utils)
> #:use-module ((guix licenses) #:prefix license:)
> #:use-module (guix build-system gnu)
> + #:use-module (guix build-system cmake)
> #:use-module (guix download)
> - #:use-module (guix packages))
> + #:use-module (guix packages)
> + #:use-module (gnu packages compression)
> + #:use-module (gnu packages gnupg)
> + #:use-module (gnu packages qt)
> + #:use-module (gnu packages xorg))
>
> (define-public pwgen
> (package
> @@ -41,3 +46,31 @@
> (description "Pwgen generates passwords which can be easily memorized
> by a human.")
> (license license:gpl2)))
> +
> +(define-public keepassx
> + (package
> + (name "keepassx")
> + (version "2.0-beta2")
> + (source
> + (origin
> + (method url-fetch)
> + (uri (string-append "https://github.com/keepassx/keepassx/archive/"
> + version ".tar.gz"))
> + (sha256
> + (base32 "0ljf9ws3wh62zd0gyb0vk2qw6pqsmxrlybrfs5mqahf44q92ca2q"))))
> + (build-system cmake-build-system)
> + (inputs
> + `(("libgcrypt" ,libgcrypt)
> + ("libxtst" ,libxtst)
> + ("qt" ,qt-4)))
> + (native-inputs
> + `(("zlib" ,zlib)))
> + (home-page "https://www.keepassx.org")
> + (synopsis "Password manager")
> + (description "KeePassX is a password manager or safe which helps you to
> +manage your passwords in a secure way. You can put all your passwords in
> one +database, which is locked with one master key or a thumb-drive. You
> only have +to remember one single master password or insert the thumb-drive
> to unlock the +whole database. The databases are encrypted using the
> algorithms AES or +Twofish.")
> + (license (list license:gpl2 license:gpl3))))
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.2: 0001-gnu-Add-keepassx.patch --]
[-- Type: text/x-patch, Size: 2581 bytes --]
From e33e46b727663bc59124b70a23bc3d9962108612 Mon Sep 17 00:00:00 2001
From: Efraim Flashner <efraim@flashner.co.il>
Date: Wed, 16 Sep 2015 13:18:40 +0300
Subject: [PATCH] gnu: Add keepassx.
* gnu/packages/password-utils.scm (keepassx): New variable.
---
gnu/packages/password-utils.scm | 36 +++++++++++++++++++++++++++++++++++-
1 file changed, 35 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/password-utils.scm b/gnu/packages/password-utils.scm
index 4aef371..7c42c8b 100644
--- a/gnu/packages/password-utils.scm
+++ b/gnu/packages/password-utils.scm
@@ -1,5 +1,6 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2015 Steve Sprang <scs@stevesprang.com>
+;;; Copyright © 2015 Efraim Flashner <efraim@flashner.co.il>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -19,8 +20,13 @@
(define-module (gnu packages password-utils)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix build-system gnu)
+ #:use-module (guix build-system cmake)
#:use-module (guix download)
- #:use-module (guix packages))
+ #:use-module (guix packages)
+ #:use-module (gnu packages compression)
+ #:use-module (gnu packages gnupg)
+ #:use-module (gnu packages qt)
+ #:use-module (gnu packages xorg))
(define-public pwgen
(package
@@ -41,3 +47,31 @@
(description "Pwgen generates passwords which can be easily memorized by a
human.")
(license license:gpl2)))
+
+(define-public keepassx
+ (package
+ (name "keepassx")
+ (version "2.0-beta2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://github.com/keepassx/keepassx/archive/"
+ version ".tar.gz"))
+ (sha256
+ (base32 "0ljf9ws3wh62zd0gyb0vk2qw6pqsmxrlybrfs5mqahf44q92ca2q"))))
+ (build-system cmake-build-system)
+ (inputs
+ `(("libgcrypt" ,libgcrypt)
+ ("libxtst" ,libxtst)
+ ("qt" ,qt-4)))
+ (native-inputs
+ `(("zlib" ,zlib)))
+ (home-page "https://www.keepassx.org")
+ (synopsis "Password manager")
+ (description "KeePassX is a password manager or safe which helps you to
+manage your passwords in a secure way. You can put all your passwords in one
+database, which is locked with one master key or a thumb-drive. You only have
+to remember one single master password or insert the thumb-drive to unlock the
+whole database. The databases are encrypted using the algorithms AES or
+Twofish.")
+ (license (list license:gpl2 license:gpl3))))
--
2.5.1
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
next prev parent reply other threads:[~2015-09-16 11:02 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-09-16 10:22 [PATCH] gnu: Add keepassx Efraim Flashner
2015-09-16 11:02 ` Efraim Flashner [this message]
2015-09-16 17:33 ` Mathieu Lirzin
2015-09-16 17:54 ` Ricardo Wurmus
2015-09-16 18:09 ` Mathieu Lirzin
2015-09-16 18:56 ` Efraim Flashner
2015-09-16 21:06 ` Mathieu Lirzin
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://guix.gnu.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20150916140203.26ff781e@debian-netbook \
--to=efraim@flashner.co.il \
--cc=guix-devel@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).