ghdl: unstable-2021.01.14 -> 1.0.0
This commit is contained in:
parent
2b65b02c75
commit
be7906e6ee
@ -5,24 +5,22 @@ assert backend == "mcode" || backend == "llvm";
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "ghdl-${backend}";
|
pname = "ghdl-${backend}";
|
||||||
# NOTE(aseipp): move to 0.38 when it comes out, since it should support a stable
|
version = "1.0.0";
|
||||||
# version of the yosys plugin
|
|
||||||
version = "unstable-2021.01.14";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "ghdl";
|
owner = "ghdl";
|
||||||
repo = "ghdl";
|
repo = "ghdl";
|
||||||
rev = "4868294436574660552ccef50a5b0849559393de";
|
rev = "v${version}";
|
||||||
sha256 = "1wqjf0qc66dam1n2mskmlvj53bcsdwwk5rq9gimq6ah1vcwi222p";
|
sha256 = "1gyh0xckwbzgslbpw9yrpj4gqs9fm1a2qpbzl0sh143fk1kwjlly";
|
||||||
};
|
};
|
||||||
|
|
||||||
LIBRARY_PATH = "${stdenv.cc.libc}/lib";
|
LIBRARY_PATH = "${stdenv.cc.libc}/lib";
|
||||||
|
|
||||||
buildInputs = [ gnat zlib ];
|
buildInputs = [ gnat zlib ] ++ lib.optional (backend == "llvm") [ llvm ];
|
||||||
|
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
# If llvm 7.0 works, 7.x releases should work too.
|
# If llvm 7.0 works, 7.x releases should work too.
|
||||||
sed -i 's/check_version 7.0/check_version 7/g' configure
|
sed -i 's/check_version 7.0/check_version 7/g' configure
|
||||||
'';
|
'';
|
||||||
|
|
||||||
configureFlags = [ "--enable-synth" ] ++ lib.optional (backend == "llvm")
|
configureFlags = [ "--enable-synth" ] ++ lib.optional (backend == "llvm")
|
||||||
|
Loading…
Reference in New Issue
Block a user