equinox
This commit is contained in:
parent
c253ef4ed7
commit
9110d58ef2
|
@ -36,7 +36,7 @@
|
||||||
components = [
|
components = [
|
||||||
"vlsisapd" "lefdef" "bootstrap" "hurricane" "crlcore"
|
"vlsisapd" "lefdef" "bootstrap" "hurricane" "crlcore"
|
||||||
"cumulus" "flute" "etesian" "anabatic" "coloquinte"
|
"cumulus" "flute" "etesian" "anabatic" "coloquinte"
|
||||||
"katana" "bora"
|
"katana" "bora" "equinox"
|
||||||
];
|
];
|
||||||
|
|
||||||
in
|
in
|
||||||
|
|
|
@ -0,0 +1,22 @@
|
||||||
|
{ version, meta }:
|
||||||
|
|
||||||
|
{ lib, stdenv, cmake, ninja, python2, boost
|
||||||
|
, coriolis-bootstrap, coriolis-vlsisapd, coriolis-hurricane
|
||||||
|
, coriolis-crlcore, qt4 }:
|
||||||
|
|
||||||
|
let boostWithPython = boost.override { enablePython = true; python = python2; }; in
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
pname = "coriolis-equinox";
|
||||||
|
|
||||||
|
src = ../equinox;
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
python2 boostWithPython coriolis-bootstrap
|
||||||
|
coriolis-vlsisapd coriolis-hurricane coriolis-crlcore
|
||||||
|
qt4
|
||||||
|
];
|
||||||
|
nativeBuildInputs = [ cmake ninja ];
|
||||||
|
|
||||||
|
inherit version meta;
|
||||||
|
}
|
Loading…
Reference in New Issue