This commit is contained in:
Las Safin 2021-08-27 16:40:10 +00:00
parent b6336a0249
commit d7fe45acd8
No known key found for this signature in database
GPG Key ID: E7FA928911B61ED6
2 changed files with 24 additions and 1 deletions

View File

@ -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

23
nix/nimbus.nix Normal file
View File

@ -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; };
}