mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: smithforth: Move system.fs origin from phases to native-inputs.
* gnu/packages/dlang.scm (smithforth)[arguments]<phases>: Move system.fs origin from here... [native-inputs]: ...to here. Change-Id: I82ff81f72dbe2ecf70fbbd44674596e1a62cadcf Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
9320d86029
commit
6606c46490
1 changed files with 11 additions and 9 deletions
|
@ -75,7 +75,15 @@ included.")
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0a39pv7529llsa3f48fmvwvlcp3f9v8qkn5ziw2l6kxf0qvli3lm"))))
|
(base32 "0a39pv7529llsa3f48fmvwvlcp3f9v8qkn5ziw2l6kxf0qvli3lm"))))
|
||||||
(build-system trivial-build-system)
|
(build-system trivial-build-system)
|
||||||
(native-inputs (list xxd))
|
(native-inputs (list xxd
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"https://dacvs.neocities.org/SF/system"
|
||||||
|
version "fs.txt"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"17v1pp64s6n8q8w3kg48nd7zdcx2208y4svr5fpfms5lkyzg7z1m")))))
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
#:modules '((guix build utils))
|
#:modules '((guix build utils))
|
||||||
|
@ -84,14 +92,8 @@ included.")
|
||||||
(use-modules (guix build utils)
|
(use-modules (guix build utils)
|
||||||
(ice-9 textual-ports))
|
(ice-9 textual-ports))
|
||||||
(let* ((sforth.dmp #$(package-source this-package))
|
(let* ((sforth.dmp #$(package-source this-package))
|
||||||
(system.fs #$(origin
|
(system.fs #$(this-package-native-input
|
||||||
(method url-fetch)
|
(string-append "system" version "fs.txt")))
|
||||||
(uri (string-append
|
|
||||||
"https://dacvs.neocities.org/SF/system"
|
|
||||||
version "fs.txt"))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"17v1pp64s6n8q8w3kg48nd7zdcx2208y4svr5fpfms5lkyzg7z1m"))))
|
|
||||||
(xxd (string-append (assoc-ref %build-inputs "xxd")
|
(xxd (string-append (assoc-ref %build-inputs "xxd")
|
||||||
"/bin/xxd"))
|
"/bin/xxd"))
|
||||||
(bin (string-append (assoc-ref %outputs "out") "/bin")))
|
(bin (string-append (assoc-ref %outputs "out") "/bin")))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue