arachne-pnr: patchPhase -> postPatch, cleanup
This commit is contained in:
parent
826f073ed6
commit
f1cef9acff
|
@ -1,7 +1,5 @@
|
||||||
{ lib, stdenv, fetchFromGitHub, icestorm }:
|
{ lib, stdenv, fetchFromGitHub, icestorm }:
|
||||||
|
|
||||||
with builtins;
|
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "arachne-pnr";
|
pname = "arachne-pnr";
|
||||||
version = "2019.07.29";
|
version = "2019.07.29";
|
||||||
|
@ -14,17 +12,17 @@ stdenv.mkDerivation rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
makeFlags =
|
makeFlags = [
|
||||||
[ "PREFIX=$(out)"
|
"PREFIX=$(out)"
|
||||||
"ICEBOX=${icestorm}/share/icebox"
|
"ICEBOX=${icestorm}/share/icebox"
|
||||||
];
|
];
|
||||||
|
|
||||||
patchPhase = ''
|
postPatch = ''
|
||||||
substituteInPlace ./Makefile \
|
substituteInPlace ./Makefile \
|
||||||
--replace 'echo UNKNOWN' 'echo ${substring 0 10 src.rev}'
|
--replace 'echo UNKNOWN' 'echo ${lib.substring 0 10 src.rev}'
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = with lib; {
|
||||||
description = "Place and route tool for FPGAs";
|
description = "Place and route tool for FPGAs";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
Arachne-pnr implements the place and route step of
|
Arachne-pnr implements the place and route step of
|
||||||
|
@ -37,8 +35,8 @@ stdenv.mkDerivation rec {
|
||||||
the IceStorm [2] icepack command.
|
the IceStorm [2] icepack command.
|
||||||
'';
|
'';
|
||||||
homepage = "https://github.com/cseed/arachne-pnr";
|
homepage = "https://github.com/cseed/arachne-pnr";
|
||||||
license = lib.licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with lib.maintainers; [ shell thoughtpolice ];
|
maintainers = with maintainers; [ shell thoughtpolice ];
|
||||||
platforms = lib.platforms.unix;
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue