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")