This commit is contained in:
Las Safin 2021-08-27 17:18:34 +00:00
parent 8ead337bd8
commit c47e89ce26
No known key found for this signature in database
GPG Key ID: E7FA928911B61ED6
2 changed files with 24 additions and 1 deletions

View File

@ -38,7 +38,7 @@
"cumulus" "flute" "etesian" "anabatic" "coloquinte"
"katana" "bora" "equinox" "knik" "katabatic" "ispd"
"karakaze" "kite" "nimbus" "metis" "mauka" "oroshi"
"solstice" "stratus1"
"solstice" "stratus1" "tutorial"
];
in

23
nix/tutorial.nix Normal file
View File

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