summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFranz Geffke <m@f-a.nz>2025-01-17 15:18:29 +0000
committerFranz Geffke <m@f-a.nz>2025-01-17 15:18:29 +0000
commit01a91b589276a50c2ef0b1736fd586a897a366cf (patch)
tree3567cb07db02c6a89ec2a66e1f25c22dbffeece9
parent38075e0b3dacb9d25e0c49e386c47dbe7caa851d (diff)
px: Remove px-first-login-welcome-screen
-rw-r--r--px/packages/setup.scm39
1 files changed, 0 insertions, 39 deletions
diff --git a/px/packages/setup.scm b/px/packages/setup.scm
index 04f46fd..b5a0969 100644
--- a/px/packages/setup.scm
+++ b/px/packages/setup.scm
@@ -1,6 +1,3 @@
-;;; Setup Packages Module for PantherX
-;;; Hamzeh Nasajpour (h.nasajpour@pantherx.org)
-
(define-module (px packages setup)
#:use-module ((guix licenses)
#:prefix license:)
@@ -29,42 +26,6 @@
#:use-module (gnu packages xorg)
#:use-module (px packages common))
-(define-public px-first-login-welcome-screen
- (package
- (name "px-first-login-welcome-screen")
- (version "0.0.4")
- (source
- (origin
- (method url-fetch)
- (uri (string-append "https://source.pantherx.org/"
- name
- "_" ;
- version
- ".tgz"))
- (sha256
- (base32 "1av540acbwpn7ccc790bifmndfx7kscx6y7y1nqln6cmmazvzfvn"))))
- (build-system cmake-build-system)
- (arguments
- '(#:tests? #f ;no tests
- #:phases (modify-phases %standard-phases
- (add-after 'unpack 'patch-chpasswd-path
- (lambda* (#:key inputs #:allow-other-keys)
- (let ((shadow (assoc-ref inputs "shadow")))
- (substitute* "helper/px-first-login-password-helper.cpp"
- (("chpasswd")
- (string-append shadow "/sbin/chpasswd"))) #t))))))
- (inputs `(("qtbase" ,qtbase-5)
- ("qtlinguist" ,qttools-5)
- ("capnproto" ,capnproto-0.9)
- ("polkit-qt" ,polkit-qt)
- ("shadow" ,shadow)))
- (propagated-inputs `(("pkg-config" ,pkg-config)))
- (home-page "https://www.pantherx.org/")
- (synopsis "PantherX Setup Assistant")
- (description
- "This package provides cli and gui applications for Setup PantherX Devices")
- (license license:gpl3)))
-
(define-public px-setup-assistant
(package
(name "px-setup-assistant")