1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- (define-module (fpm2)
- #:use-module (guix packages)
- #:use-module (guix download)
- #:use-module (guix build-system gnu)
- #:use-module (guix licenses)
- #:use-module (gnu packages pkg-config)
- #:use-module (gnu packages gtk)
- #:use-module (gnu packages gnupg)
- #:use-module (gnu packages xml)
- #:use-module (gnu packages glib))
- ;; TODO: Add some files to either POTFILES.in or POTFILES.skip. see guix
- ;; build failure
- (define-public fpm2
- (package
- (name "fpm2")
- (version "0.79")
- (source (origin
- (method url-fetch)
- (uri (string-append "http://als.regnet.cz/fpm2/download/fpm2-"
- version ".tar.bz2"))
- (sha256
- (base32
- "19sdy1lygfhkg5nxi2w9a4d9kwvw24nxp0ix0p0lz91qpvk9qpnm"))))
- (build-system gnu-build-system)
- (inputs `(("gtk2" ,gtk+-2)
- ("gnupg" ,gnupg)
- ("libxml2" ,libxml2)))
- (native-inputs `(("pkgconfig" ,pkg-config)
- ("intltool" ,intltool)))
- (arguments
- '(#:phases
- (modify-phases %standard-phases
- (add-before 'configure 'pre-configure
- (lambda ()
- (let ((potfiles-include (open-output-file "po/POTFILES.in")))
- (display "data/fpm2.desktop.in" potfiles-include)
- (newline potfiles-include)
- (display "fpm2.glade" potfiles-include)
- (newline potfiles-include)))))))
- (synopsis "Manages, generates and stores passwords encrypted")
- (description "FPM2 is GTK2 port from Figaro's Password Manager originally
- developed by John Conneely, with some new enhancements.")
- (home-page "http://als.regnet.cz/fpm2/")
- (license gpl2)))
|