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