nimbus
This commit is contained in:
parent
b6336a0249
commit
d7fe45acd8
|
@ -37,7 +37,7 @@
|
|||
"vlsisapd" "lefdef" "bootstrap" "hurricane" "crlcore"
|
||||
"cumulus" "flute" "etesian" "anabatic" "coloquinte"
|
||||
"katana" "bora" "equinox" "knik" "katabatic" "ispd"
|
||||
"karakaze" "kite"
|
||||
"karakaze" "kite" "nimbus"
|
||||
];
|
||||
|
||||
in
|
||||
|
|
|
@ -0,0 +1,23 @@
|
|||
{ version, meta }:
|
||||
|
||||
{ lib, stdenv, cmake, ninja, python2, qt4, coriolis-crlcore
|
||||
, coriolis-bootstrap, coriolis-vlsisapd, coriolis-hurricane
|
||||
, doxygen, boost }:
|
||||
|
||||
let boostWithPython = boost.override { enablePython = true; python = python2; }; in
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "coriolis-nimbus";
|
||||
|
||||
src = ../nimbus;
|
||||
|
||||
buildInputs = [
|
||||
python2 coriolis-bootstrap coriolis-vlsisapd
|
||||
coriolis-crlcore coriolis-hurricane qt4 boostWithPython
|
||||
];
|
||||
nativeBuildInputs = [ cmake ninja doxygen ];
|
||||
|
||||
inherit version;
|
||||
|
||||
meta = meta // { broken = true; };
|
||||
}
|
Loading…
Reference in New Issue