avp pushed a commit to branch master
in repository guix.
commit de0925b3c987e6847645b79f3d94586d2e31b50d
Author: Artyom V. Poptsov <[email protected]>
AuthorDate: Sat Mar 22 15:01:08 2025 +0300
gnu ktsuss: Move the package definition down.
* gnu/packages/admin.scm (ktsuss): Move the package definition down to
improve
the alphabetical sorting of packages.
Change-Id: Id41b89e6f98005de1e6b047d54222d298a3e4a59
---
gnu/packages/admin.scm | 72 +++++++++++++++++++++++++-------------------------
1 file changed, 36 insertions(+), 36 deletions(-)
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 452136ff7c..c311a5e242 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -214,42 +214,6 @@
#:use-module (gnu packages xml)
#:use-module (gnu packages xorg))
-;; This package uses su instead of sudo (because of SpaceFM).
-(define-public ktsuss
- (package
- (name "ktsuss")
- (version "2.1")
- (source
- (origin
- (method git-fetch)
- (uri
- (git-reference
- (url "https://github.com/nomius/ktsuss")
- (commit version)))
- (sha256
- (base32 "0q9931f9hp47v1n8scli4bdg2rkjpf5jf8v7jj2gdn83aia1r2hz"))
- (file-name (git-file-name name version))))
- (build-system glib-or-gtk-build-system)
- (arguments
- (list #:phases
- #~(modify-phases %standard-phases
- (add-after 'unpack 'patch-file-names
- (lambda _
- (substitute* "configure.ac"
- (("supath=`which su 2>/dev/null`")
- "supath=/run/privileged/bin/su")))))))
- (native-inputs
- (list autoconf automake libtool pkg-config))
- (inputs
- (list glib gtk+-2))
- (synopsis "Graphical front end for @command{su}")
- (description
- "Ktsuss stands for ``Keep the @command{su} simple, stupid''.
-It is a graphical version of @command{su} written in C and GTK+ 2, with
-simplicity in mind.")
- (home-page "https://github.com/nomius/ktsuss")
- (license license:bsd-3)))
-
(define-public aide
(package
(name "aide")
@@ -337,6 +301,42 @@ for interacting with the
@url{https://www.hetzner.com/,Hetzner Cloud}
service.")
(license license:expat)))
+;; This package uses su instead of sudo (because of SpaceFM).
+(define-public ktsuss
+ (package
+ (name "ktsuss")
+ (version "2.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri
+ (git-reference
+ (url "https://github.com/nomius/ktsuss")
+ (commit version)))
+ (sha256
+ (base32 "0q9931f9hp47v1n8scli4bdg2rkjpf5jf8v7jj2gdn83aia1r2hz"))
+ (file-name (git-file-name name version))))
+ (build-system glib-or-gtk-build-system)
+ (arguments
+ (list #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'patch-file-names
+ (lambda _
+ (substitute* "configure.ac"
+ (("supath=`which su 2>/dev/null`")
+ "supath=/run/privileged/bin/su")))))))
+ (native-inputs
+ (list autoconf automake libtool pkg-config))
+ (inputs
+ (list glib gtk+-2))
+ (synopsis "Graphical front end for @command{su}")
+ (description
+ "Ktsuss stands for ``Keep the @command{su} simple, stupid''.
+It is a graphical version of @command{su} written in C and GTK+ 2, with
+simplicity in mind.")
+ (home-page "https://github.com/nomius/ktsuss")
+ (license license:bsd-3)))
+
(define-public progress
(package
(name "progress")