summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFranz Geffke <franz@pantherx.org>2024-03-30 12:26:18 +0000
committerFranz Geffke <franz@pantherx.org>2024-03-30 12:26:18 +0000
commit9743615b6e038798a98c31380be4e2417a76a37e (patch)
treef59d9f5b5d833738f9d065618c5604a8cd6a45a3
parentf7c4e579e145dab0036d375147b9e6119e4bd051 (diff)
drop px-pass-service
-rw-r--r--px/packages/password.scm41
1 files changed, 0 insertions, 41 deletions
diff --git a/px/packages/password.scm b/px/packages/password.scm
deleted file mode 100644
index d14d9d1..0000000
--- a/px/packages/password.scm
+++ /dev/null
@@ -1,41 +0,0 @@
-(define-module (px packages password)
- #:use-module (guix packages)
- #:use-module (guix download)
- #:use-module (guix build-system gnu)
- #:use-module (guix licenses)
- #:use-module (gnu packages autotools)
- #:use-module (gnu packages pkg-config)
- #:use-module (gnu packages serialization)
- #:use-module (px packages common))
-
-(define-public px-pass-service
- (package
- (name "px-pass-service")
- (version "0.0.94")
- (source
- (origin
- (method url-fetch)
- (uri (string-append "https://source.pantherx.org/px_pass_service_"
- version ".tgz"))
- (sha256
- (base32 "08qx0dg2igibx0ifr55x5vcdac3giwln0grk86bkki1n0fykkfq3"))))
- (build-system gnu-build-system)
- (arguments
- `(#:tests? #f
- #:phases (modify-phases %standard-phases
- (add-after 'unpack 'fix-source
- (lambda _
- (chdir "../") ;- guix automatically change cwd to first sub-directory, which is not desired.
- (delete-file "configure") ;- we need to delete old cofigure file inside package and allow autotools to
- #t)) ;recreate that.
- (add-before 'install-license-files 'cleanup-license
- (lambda _
- (delete-file "COPYING"))))))
- (inputs `(("capnproto" ,capnproto-0.9)))
- (native-inputs `(("autoconf" ,autoconf)
- ("automake" ,automake)
- ("pkg-config" ,pkg-config)))
- (home-page "https://www.pantherx.org/")
- (synopsis "PantherX Password Management Service")
- (description "Password manager service for pantherx operating system.")
- (license gpl3+)))