arachne-pnr: patchPhase -> postPatch, cleanup

This commit is contained in:
Sandro Jäckel 2021-03-03 17:08:08 +01:00
parent 826f073ed6
commit f1cef9acff
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -1,7 +1,5 @@
{ lib, stdenv, fetchFromGitHub, icestorm }:
with builtins;
stdenv.mkDerivation rec {
pname = "arachne-pnr";
version = "2019.07.29";
@ -14,17 +12,17 @@ stdenv.mkDerivation rec {
};
enableParallelBuilding = true;
makeFlags =
[ "PREFIX=$(out)"
makeFlags = [
"PREFIX=$(out)"
"ICEBOX=${icestorm}/share/icebox"
];
patchPhase = ''
postPatch = ''
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";
longDescription = ''
Arachne-pnr implements the place and route step of
@ -37,8 +35,8 @@ stdenv.mkDerivation rec {
the IceStorm [2] icepack command.
'';
homepage = "https://github.com/cseed/arachne-pnr";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ shell thoughtpolice ];
platforms = lib.platforms.unix;
license = licenses.mit;
maintainers = with maintainers; [ shell thoughtpolice ];
platforms = platforms.unix;
};
}