mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
nixpkgs: simplify arachne-pnr makeFlags, make myself maintainer
Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
parent
11cd2c52c4
commit
3b08d97e07
1 changed files with 4 additions and 5 deletions
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue