summaryrefslogtreecommitdiffstats
path: root/pkgs/development/compilers/arachne-pnr
diff options
context:
space:
mode:
authorAustin Seipp <aseipp@pobox.com>2017-10-16 02:29:21 -0500
committerAustin Seipp <aseipp@pobox.com>2017-10-16 12:01:17 -0500
commit3b08d97e071ee86e113b915f6bbeb9d9c9b98f15 (patch)
tree0d36a2a188edca565bf828f6e986c96cdf844918 /pkgs/development/compilers/arachne-pnr
parent11cd2c52c4a4a760e0ae8338afafba5ad4fdaa56 (diff)
nixpkgs: simplify arachne-pnr makeFlags, make myself maintainer
Signed-off-by: Austin Seipp <aseipp@pobox.com>
Diffstat (limited to 'pkgs/development/compilers/arachne-pnr')
-rw-r--r--pkgs/development/compilers/arachne-pnr/default.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/pkgs/development/compilers/arachne-pnr/default.nix b/pkgs/development/compilers/arachne-pnr/default.nix
index 6508b05a5348..0a0f8bbf0824 100644
--- a/pkgs/development/compilers/arachne-pnr/default.nix
+++ b/pkgs/development/compilers/arachne-pnr/default.nix
@@ -11,10 +11,9 @@ stdenv.mkDerivation rec {
sha256 = "1wszcx6hgw4q4r778zswrlwdwvwxq834bkajck8w9yfqwxs9lmq8";
};
- preBuild = ''
- makeFlags="DESTDIR=$out $makeFlags"
- '';
- makeFlags = "ICEBOX=${icestorm}/share/icebox";
+ makeFlags =
+ [ "DESTDIR=$(out)" "ICEBOX=${icestorm}/share/icebox"
+ ];
meta = {
description = "Place and route tool for FPGAs";
@@ -30,7 +29,7 @@ stdenv.mkDerivation rec {
'';
homepage = https://github.com/cseed/arachne-pnr;
license = stdenv.lib.licenses.mit;
- maintainers = [ stdenv.lib.maintainers.shell ];
+ maintainers = with stdenv.lib.maintainers; [ shell thoughtpolice ];
platforms = stdenv.lib.platforms.linux;
};
}