summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArtyom V. Poptsov <poptsov.artyom@gmail.com>2025-06-11 21:02:38 +0300
committerArtyom V. Poptsov <poptsov.artyom@gmail.com>2025-06-11 21:02:38 +0300
commitc3bb472e21d4a7573b8f7624f6f976ff724bbf2e (patch)
tree33bfdd2ffe3436b5e1f105745a8bcae15edfce50
parent7334aa05c9525b0d3c88b95097acc37495793877 (diff)
gnu: wakelan: Move the package definition down.
* gnu/packages/admin.scm (wakelan): Move the package definition down to improve the alphabetical sorting of the packages in the module. Change-Id: I8022abd00e2d721ac2f7bddc5c7c017ce4eed419
-rw-r--r--gnu/packages/admin.scm76
1 files changed, 38 insertions, 38 deletions
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 90f21487e1..194ce4b0b0 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -2772,44 +2772,6 @@ authentication server.")
;; Same license as wpa_supplicant.
(license license:bsd-3)))
-(define-public wakelan
- (package
- (name "wakelan")
- (version "1.1")
- (source (origin
- (method url-fetch)
- (uri (string-append
- "ftp://ftp.gwdg.de/pub/linux/metalab/system/network/misc/wakelan-"
- version ".tar.gz"))
- (sha256
- (base32
- "0vydqpf44146ir6k87gmqaq6xy66xhc1gkr3nsd7jj3nhy7ypx9x"))))
- (build-system gnu-build-system)
- (arguments
- (list
- #:tests? #f
- #:phases
- #~(modify-phases %standard-phases
- (replace 'configure
- (lambda* (#:key inputs #:allow-other-keys)
- (mkdir-p (string-append #$output "/bin"))
- (mkdir-p (string-append #$output "/share/man/man1"))
-
- ;; It's an old configure script that doesn't understand
- ;; the extra options we pass.
- (setenv "CONFIG_SHELL"
- (search-input-file %build-inputs "bin/bash"))
- (invoke "./configure"
- (string-append "--prefix=" #$output)
- (string-append "--mandir=" #$output
- "/share/man")))))))
- (home-page "https://www.kernel.org") ; really, no home page
- (synopsis "Send a wake-on-LAN packet")
- (description
- "WakeLan broadcasts a properly formatted UDP packet across the local area
-network, which causes enabled computers to power on.")
- (license license:gpl2+)))
-
(define-public dmidecode
(package
(name "dmidecode")
@@ -6841,6 +6803,44 @@ of ps, top and pstree.")
(home-page "https://github.com/walles/px")
(license license:expat)))
+(define-public wakelan
+ (package
+ (name "wakelan")
+ (version "1.1")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append
+ "ftp://ftp.gwdg.de/pub/linux/metalab/system/network/misc/wakelan-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "0vydqpf44146ir6k87gmqaq6xy66xhc1gkr3nsd7jj3nhy7ypx9x"))))
+ (build-system gnu-build-system)
+ (arguments
+ (list
+ #:tests? #f
+ #:phases
+ #~(modify-phases %standard-phases
+ (replace 'configure
+ (lambda* (#:key inputs #:allow-other-keys)
+ (mkdir-p (string-append #$output "/bin"))
+ (mkdir-p (string-append #$output "/share/man/man1"))
+
+ ;; It's an old configure script that doesn't understand
+ ;; the extra options we pass.
+ (setenv "CONFIG_SHELL"
+ (search-input-file %build-inputs "bin/bash"))
+ (invoke "./configure"
+ (string-append "--prefix=" #$output)
+ (string-append "--mandir=" #$output
+ "/share/man")))))))
+ (home-page "https://www.kernel.org") ; really, no home page
+ (synopsis "Send a wake-on-LAN packet")
+ (description
+ "WakeLan broadcasts a properly formatted UDP packet across the local area
+network, which causes enabled computers to power on.")
+ (license license:gpl2+)))
+
(define-public xfel
(package
(name "xfel")