Compare commits

...

2 Commits

Author SHA1 Message Date
Luis Guilherme Coelho 4f8429d8ea
packages: shepherd: Add missing module import 2024-11-26 14:24:51 -03:00
Luis Guilherme Coelho 5ed72fbf35
packages: shepherd: Add shepherd-next 2024-11-26 14:18:08 -03:00
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
(define-module (radix packages shepherd)
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (gnu packages admin))
(define-public shepherd-next
(package
(inherit shepherd)
(version "0.10.0rc1")
(source (origin
(method url-fetch)
(uri (string-append
"https://alpha.gnu.org/gnu/shepherd/shepherd-";
version ".tar.gz"))
(sha256
(base32
"1x3lxsi6xhhds4pq30c3shydmhiidkf1wl2l7mxkpklmlycnbqgg"))))))