ispd work
This commit is contained in:
parent
552e54731a
commit
99cf78f580
|
@ -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" "equinox" "knik" "katabatic"
|
"katana" "bora" "equinox" "knik" "katabatic" "ispd"
|
||||||
];
|
];
|
||||||
|
|
||||||
in
|
in
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
find_package(CORIOLIS REQUIRED)
|
find_package(CORIOLIS REQUIRED)
|
||||||
find_package(KNIK REQUIRED)
|
find_package(KNIK REQUIRED)
|
||||||
find_package(LEFDEF REQUIRED)
|
find_package(LEFDEF REQUIRED)
|
||||||
#find_package(KATABATIC REQUIRED)
|
find_package(KATABATIC REQUIRED)
|
||||||
#find_package(KITE REQUIRED)
|
#find_package(KITE REQUIRED)
|
||||||
#find_package(EQUINOX REQUIRED)
|
#find_package(EQUINOX REQUIRED)
|
||||||
#find_package(SOLSTICE REQUIRED)
|
#find_package(SOLSTICE REQUIRED)
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
|
|
||||||
include ( ${QT_USE_FILE} )
|
include ( ${QT_USE_FILE} )
|
||||||
include_directories ( ${Boost_INCLUDE_DIRS}
|
include_directories ( ${Boost_INCLUDE_DIRS}
|
||||||
|
${KNIK_INCLUDE_DIR}
|
||||||
|
${KATABATIC_INCLUDE_DIR}
|
||||||
${HURRICANE_INCLUDE_DIR}
|
${HURRICANE_INCLUDE_DIR}
|
||||||
${CORIOLIS_INCLUDE_DIR}
|
${CORIOLIS_INCLUDE_DIR}
|
||||||
)
|
)
|
||||||
|
|
|
@ -0,0 +1,24 @@
|
||||||
|
{ version, meta }:
|
||||||
|
|
||||||
|
{ lib, stdenv, cmake, ninja, python2, boost
|
||||||
|
, coriolis-bootstrap, coriolis-vlsisapd, coriolis-hurricane
|
||||||
|
, coriolis-crlcore, coriolis-flute, coriolis-knik
|
||||||
|
, coriolis-lefdef, coriolis-katabatic, libxml2, qt4 }:
|
||||||
|
|
||||||
|
let boostWithPython = boost.override { enablePython = true; python = python2; }; in
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
pname = "coriolis-ispd";
|
||||||
|
|
||||||
|
src = ../ispd;
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
python2 boostWithPython coriolis-bootstrap libxml2
|
||||||
|
coriolis-vlsisapd coriolis-hurricane coriolis-crlcore
|
||||||
|
coriolis-flute coriolis-knik coriolis-lefdef
|
||||||
|
coriolis-katabatic qt4
|
||||||
|
];
|
||||||
|
nativeBuildInputs = [ cmake ninja ];
|
||||||
|
|
||||||
|
inherit version meta;
|
||||||
|
}
|
Loading…
Reference in New Issue