diff options
| author | Simon Tournier <zimon.toutoune@gmail.com> | 2024-09-10 03:27:12 +0200 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2024-12-16 00:19:56 +0100 |
| commit | 6606c464908b5f618351230fe27c8ea45620db91 (patch) | |
| tree | 04b6144db3132b93937c4c20e601c76907c5b3ab /gnu/packages | |
| parent | 9320d860294fb6af3fe085e2b4c15a95f87b2b94 (diff) | |
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>
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/forth.scm | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/gnu/packages/forth.scm b/gnu/packages/forth.scm index 6e8d8cdc4cf..c5238878711 100644 --- a/gnu/packages/forth.scm +++ b/gnu/packages/forth.scm | |||
| @@ -75,7 +75,15 @@ included.") | |||
| 75 | (sha256 | 75 | (sha256 |
| 76 | (base32 "0a39pv7529llsa3f48fmvwvlcp3f9v8qkn5ziw2l6kxf0qvli3lm")))) | 76 | (base32 "0a39pv7529llsa3f48fmvwvlcp3f9v8qkn5ziw2l6kxf0qvli3lm")))) |
| 77 | (build-system trivial-build-system) | 77 | (build-system trivial-build-system) |
| 78 | (native-inputs (list xxd)) | 78 | (native-inputs (list xxd |
| 79 | (origin | ||
| 80 | (method url-fetch) | ||
| 81 | (uri (string-append | ||
| 82 | "https://dacvs.neocities.org/SF/system" | ||
| 83 | version "fs.txt")) | ||
| 84 | (sha256 | ||
| 85 | (base32 | ||
| 86 | "17v1pp64s6n8q8w3kg48nd7zdcx2208y4svr5fpfms5lkyzg7z1m"))))) | ||
| 79 | (arguments | 87 | (arguments |
| 80 | (list | 88 | (list |
| 81 | #:modules '((guix build utils)) | 89 | #:modules '((guix build utils)) |
| @@ -84,14 +92,8 @@ included.") | |||
| 84 | (use-modules (guix build utils) | 92 | (use-modules (guix build utils) |
| 85 | (ice-9 textual-ports)) | 93 | (ice-9 textual-ports)) |
| 86 | (let* ((sforth.dmp #$(package-source this-package)) | 94 | (let* ((sforth.dmp #$(package-source this-package)) |
| 87 | (system.fs #$(origin | 95 | (system.fs #$(this-package-native-input |
| 88 | (method url-fetch) | 96 | (string-append "system" version "fs.txt"))) |
| 89 | (uri (string-append | ||
| 90 | "https://dacvs.neocities.org/SF/system" | ||
| 91 | version "fs.txt")) | ||
| 92 | (sha256 | ||
| 93 | (base32 | ||
| 94 | "17v1pp64s6n8q8w3kg48nd7zdcx2208y4svr5fpfms5lkyzg7z1m")))) | ||
| 95 | (xxd (string-append (assoc-ref %build-inputs "xxd") | 97 | (xxd (string-append (assoc-ref %build-inputs "xxd") |
| 96 | "/bin/xxd")) | 98 | "/bin/xxd")) |
| 97 | (bin (string-append (assoc-ref %outputs "out") "/bin"))) | 99 | (bin (string-append (assoc-ref %outputs "out") "/bin"))) |
