Compare commits
2 Commits
1be281d875
...
4f8429d8ea
Author | SHA1 | Date |
---|---|---|
Luis Guilherme Coelho | 4f8429d8ea | |
Luis Guilherme Coelho | 5ed72fbf35 |
|
@ -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"))))))
|
Loading…
Reference in New Issue