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
This commit is contained in:
Artyom V. Poptsov 2025-03-22 15:01:08 +03:00
parent 6838ec2fa4
commit de0925b3c9
No known key found for this signature in database
GPG key ID: 935EBE0736DC857E

View file

@ -214,42 +214,6 @@
#:use-module (gnu packages xml) #:use-module (gnu packages xml)
#:use-module (gnu packages xorg)) #: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 (define-public aide
(package (package
(name "aide") (name "aide")
@ -337,6 +301,42 @@ for interacting with the @url{https://www.hetzner.com/,Hetzner Cloud}
service.") service.")
(license license:expat))) (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 (define-public progress
(package (package
(name "progress") (name "progress")