diff options
author | Ludovic Courtès <ludo@gnu.org> | 2023-05-05 23:06:36 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2023-05-05 23:47:49 +0200 |
commit | 69a65335f9937adc0bbaa5206d867c3a2e5c3980 (patch) | |
tree | 8e90ac36a59cac6da4b9899b84616914a5016160 /gnu/packages/admin.scm | |
parent | 75a25d9c2abecf815041945ab90d9dc1fffbdcf2 (diff) | |
download | guix-69a65335f9937adc0bbaa5206d867c3a2e5c3980.tar.gz |
gnu: guile2.0-shepherd: Remove.
Version 0.9.x of the Shepherd requires Guile >= 2.2. * gnu/packages/admin.scm (guile2.0-shepherd): Remove.
Diffstat (limited to 'gnu/packages/admin.scm')
-rw-r--r-- | gnu/packages/admin.scm | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index 729f9dc411..92dc5a429f 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -375,25 +375,6 @@ interface and is based on GNU Guile.") (native-inputs (list pkg-config guile-2.2)) (inputs (list guile-2.2 guile2.2-fibers)))) -(define-public guile2.0-shepherd - (package - (inherit shepherd) - (name "guile2.0-shepherd") - (native-inputs - (list help2man pkg-config guile-2.0)) - (inputs - (list guile-2.0)) - (arguments - `(#:phases - (modify-phases %standard-phases - (add-after 'unpack 'patch-source - (lambda _ - ;; (ice-9 threads) isn't available in guile-2.0 - (substitute* "modules/shepherd.scm" - ((".*\\(ice-9 threads\\).*") "")) - #t))) - ,@(package-arguments shepherd))))) - (define-public cfm (package (name "cfm") |