summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEkaitz Zarraga <ekaitz@elenq.tech>2021-07-01 18:39:32 +0200
committerEkaitz Zarraga <ekaitz@elenq.tech>2021-07-01 18:39:32 +0200
commitf3c9e4e32b3173cd61b84a3b11d508df26d18e53 (patch)
treee0c620e8fed525a793ca6b80ba9e5acab2401398
parentbf457baaf3dc5e05dd16eeca2650ebd15ee9a226 (diff)
Remove riscv toolchain
-rw-r--r--riscv.scm29
1 files changed, 0 insertions, 29 deletions
diff --git a/riscv.scm b/riscv.scm
deleted file mode 100644
index 176295a..0000000
--- a/riscv.scm
+++ /dev/null
@@ -1,29 +0,0 @@
-(define-module (riscv)
- #:use-module (guix packages)
- #:use-module (guix git-download)
- #:use-module ((guix licenses) #:prefix license:)
- #:use-module (guix build-system gnu)
- #:use-module (gnu packages bootloaders) ; For spike
- )
-
-
-(define-public spike
- (package
- (name "spike")
- (version "1.0.0")
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/riscv/riscv-isa-sim.git")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256 (base32 "1hcl01nj96s3rkz4mrq747s5lkw81lgdjdimb8b1b9h8qnida7ww"))))
-
- (propagated-inputs
- `(("dtc" ,dtc)))
- (build-system gnu-build-system)
- (home-page "https://github.com/riscv/riscv-isa-sim")
- (description "Spike, the RISC-V ISA Simulator, implements a functional
-model of one or more RISC-V harts.")
- (synopsis "RISC-V ISA Simulator")
- (license license:gpl3+)))