diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-09-10 11:49:34 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-09-10 11:49:34 +0300 |
commit | 2203a29a1669e8c5f8b1f0adcb341f1396eda838 (patch) | |
tree | 0d906fdf56659412f45aa38c65368085311f8ddf | |
parent | c5e4556b8b94cd86029af5855b3e410333aefa28 (diff) | |
download | guix-2203a29a1669e8c5f8b1f0adcb341f1396eda838.tar guix-2203a29a1669e8c5f8b1f0adcb341f1396eda838.tar.gz |
gnu: verilator: Remove input labels.
* gnu/packages/fpga.scm (verilator)[native-inputs]: Remove input labels.
Change-Id: Ia3efa473b909540f972f706e24238d6dc2a2dc43
-rw-r--r-- | gnu/packages/fpga.scm | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/gnu/packages/fpga.scm b/gnu/packages/fpga.scm index 4970606fcc..36f69366ad 100644 --- a/gnu/packages/fpga.scm +++ b/gnu/packages/fpga.scm @@ -513,16 +513,16 @@ using different abstraction levels.") (sha256 (base32 "1q9facgfdwwmf2ax65aznhqmk8qfisq9k5p8wrxrw6qqy38vl0k2")))) (native-inputs - `(("autoconf" ,autoconf) - ("automake" ,automake) - ("bison" ,bison) - ("flex" ,flex) - ("gettext" ,gettext-minimal) - ("python" ,python) - ;; And a couple of extras for the test suite: - ("cmake" ,cmake-minimal) - ("gdb" ,gdb/pinned) - ("which" ,which))) + (list autoconf + automake + bison + flex + gettext-minimal + python + ;; And a couple of extras for the test suite: + cmake-minimal + gdb/pinned + which)) (inputs (list help2man perl python systemc)) (build-system gnu-build-system) |