2021-08-22 05:54:22 -05:00
|
|
|
{ version, meta }:
|
|
|
|
|
2021-08-29 10:33:53 -05:00
|
|
|
{ lib, stdenv, cmake, boost, bison, flex
|
|
|
|
, libxml2, qt4, ninja, coriolis-bootstrap, doxygen
|
|
|
|
, python2Packages }:
|
2021-08-22 05:54:22 -05:00
|
|
|
|
2021-08-29 10:33:53 -05:00
|
|
|
let boostWithPython = boost.override { enablePython = true; inherit (python2Packages) python; }; in
|
2021-08-22 05:54:22 -05:00
|
|
|
|
2021-08-29 10:33:53 -05:00
|
|
|
python2Packages.toPythonModule (stdenv.mkDerivation {
|
2021-08-22 05:54:22 -05:00
|
|
|
pname = "coriolis-vlsisapd";
|
|
|
|
|
|
|
|
src = ../vlsisapd;
|
|
|
|
|
2021-08-29 10:33:53 -05:00
|
|
|
buildInputs = [ python2Packages.python boostWithPython coriolis-bootstrap libxml2 bison flex qt4 ];
|
2021-08-27 12:20:48 -05:00
|
|
|
nativeBuildInputs = [ cmake ninja doxygen ];
|
2021-08-22 05:54:22 -05:00
|
|
|
|
|
|
|
inherit version meta;
|
2021-08-29 10:33:53 -05:00
|
|
|
})
|