mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-28 14:01:29 -05:00
gnu: Add dde-sources.
* gnu/packages/hurd.scm (dde-sources): New variable. (hurd)[native-inputs]: Add it.
This commit is contained in:
parent
706b91ea8d
commit
71b92e1abd
1 changed files with 14 additions and 13 deletions
|
@ -355,6 +355,19 @@ (define (translated? node)
|
||||||
(with-parameters ((%current-target-system "i586-pc-gnu"))
|
(with-parameters ((%current-target-system "i586-pc-gnu"))
|
||||||
(program-file "rc" rc)))
|
(program-file "rc" rc)))
|
||||||
|
|
||||||
|
(define dde-sources
|
||||||
|
;; This is the current tip of the dde branch
|
||||||
|
(let ((commit "ac1c7eb7a8b24b7469bed5365be38a968d59a136"))
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://git.savannah.gnu.org/git/hurd/incubator.git")
|
||||||
|
(commit commit)))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1vryinbg75xpydfrv9dbgfnds6knlh8l8bk2rxp32y9dc58z0692"))
|
||||||
|
(file-name (git-file-name "dde" commit)))))
|
||||||
|
|
||||||
(define-public hurd
|
(define-public hurd
|
||||||
(package
|
(package
|
||||||
(name "hurd")
|
(name "hurd")
|
||||||
|
@ -508,19 +521,7 @@ (define-public hurd
|
||||||
mig))
|
mig))
|
||||||
("perl" ,perl)
|
("perl" ,perl)
|
||||||
("texinfo" ,texinfo-4)
|
("texinfo" ,texinfo-4)
|
||||||
("dde-sources"
|
("dde-sources" ,dde-sources)))
|
||||||
;; This is the current tip of the dde branch
|
|
||||||
,(let ((commit "ac1c7eb7a8b24b7469bed5365be38a968d59a136"))
|
|
||||||
(origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://git.savannah.gnu.org/git/hurd/incubator.git")
|
|
||||||
(commit commit)))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"1vryinbg75xpydfrv9dbgfnds6knlh8l8bk2rxp32y9dc58z0692"))
|
|
||||||
(file-name (string-append "dde-checkout-"
|
|
||||||
(string-take commit 7))))))))
|
|
||||||
(supported-systems %hurd-systems)
|
(supported-systems %hurd-systems)
|
||||||
(home-page "https://www.gnu.org/software/hurd/hurd.html")
|
(home-page "https://www.gnu.org/software/hurd/hurd.html")
|
||||||
(synopsis "The kernel servers for the GNU operating system")
|
(synopsis "The kernel servers for the GNU operating system")
|
||||||
|
|
Loading…
Reference in a new issue