mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
commit
b2b6f1febe
@ -1,4 +1,4 @@
|
||||
{ lib, stdenv, fetchFromGitHub, dtc, pkgsCross }:
|
||||
{ lib, stdenv, fetchFromGitHub, fetchpatch, dtc, pkgsCross }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "spike";
|
||||
@ -11,6 +11,14 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "sha256-4D2Fezej0ioOOupw3kgMT5VLs+/jXQjwvek6v0AVMzI=";
|
||||
};
|
||||
|
||||
patches = [
|
||||
(fetchpatch {
|
||||
name = "fesvr-fix-compilation-with-gcc-13.patch";
|
||||
url = "https://github.com/riscv-software-src/riscv-isa-sim/commit/0a7bb5403d0290cea8b2356179d92e4c61ffd51d.patch";
|
||||
hash = "sha256-JUMTbGawvLkoOWKkruzLzUFQytVR3wqTlGu/eegRFEE=";
|
||||
})
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ dtc ];
|
||||
enableParallelBuilding = true;
|
||||
|
||||
|
@ -35088,7 +35088,7 @@ with pkgs;
|
||||
|
||||
spice-vdagent = callPackage ../applications/virtualization/spice-vdagent { };
|
||||
|
||||
spike = pin-to-gcc12-if-gcc13 (callPackage ../applications/virtualization/spike { });
|
||||
spike = callPackage ../applications/virtualization/spike { };
|
||||
|
||||
tensorman = callPackage ../tools/misc/tensorman { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user