nixpkgs: simplify arachne-pnr makeFlags, make myself maintainer

Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
Austin Seipp 2017-10-16 02:29:21 -05:00
parent 11cd2c52c4
commit 3b08d97e07

View File

@ -11,10 +11,9 @@ stdenv.mkDerivation rec {
sha256 = "1wszcx6hgw4q4r778zswrlwdwvwxq834bkajck8w9yfqwxs9lmq8"; sha256 = "1wszcx6hgw4q4r778zswrlwdwvwxq834bkajck8w9yfqwxs9lmq8";
}; };
preBuild = '' makeFlags =
makeFlags="DESTDIR=$out $makeFlags" [ "DESTDIR=$(out)" "ICEBOX=${icestorm}/share/icebox"
''; ];
makeFlags = "ICEBOX=${icestorm}/share/icebox";
meta = { meta = {
description = "Place and route tool for FPGAs"; description = "Place and route tool for FPGAs";
@ -30,7 +29,7 @@ stdenv.mkDerivation rec {
''; '';
homepage = https://github.com/cseed/arachne-pnr; homepage = https://github.com/cseed/arachne-pnr;
license = stdenv.lib.licenses.mit; license = stdenv.lib.licenses.mit;
maintainers = [ stdenv.lib.maintainers.shell ]; maintainers = with stdenv.lib.maintainers; [ shell thoughtpolice ];
platforms = stdenv.lib.platforms.linux; platforms = stdenv.lib.platforms.linux;
}; };
} }