2021-08-22 06:17:47 -05:00
|
|
|
{ version, meta }:
|
|
|
|
|
|
|
|
{ lib, stdenv, python2, cmake, boost, bison, flex
|
2021-08-23 03:44:07 -05:00
|
|
|
, libxml2, rapidjson, qt4, zlib, bzip2, ninja
|
2021-08-22 06:17:47 -05:00
|
|
|
, coriolis-bootstrap, coriolis-vlsisapd }:
|
|
|
|
|
|
|
|
let boostWithPython = boost.override { enablePython = true; python = python2; }; in
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
pname = "coriolis-hurricane";
|
|
|
|
|
|
|
|
src = ../hurricane;
|
|
|
|
|
|
|
|
buildInputs = [ python2 boostWithPython coriolis-bootstrap libxml2 bison flex qt4 bzip2 coriolis-vlsisapd rapidjson ];
|
|
|
|
nativeBuildInputs = [ cmake ninja ];
|
|
|
|
|
|
|
|
inherit version meta;
|
|
|
|
}
|