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,30 +1,28 @@
{ 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";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "yosyshq"; owner = "yosyshq";
repo = "arachne-pnr"; repo = "arachne-pnr";
rev = "c40fb2289952f4f120cc10a5a4c82a6fb88442dc"; rev = "c40fb2289952f4f120cc10a5a4c82a6fb88442dc";
sha256 = "0lg9rccr486cvips3jf289af2b4a2j9chc8iqnkhykgi1hw4pszc"; sha256 = "0lg9rccr486cvips3jf289af2b4a2j9chc8iqnkhykgi1hw4pszc";
}; };
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;
}; };
} }