coriolis/nix/hurricane.nix

13 lines
379 B
Nix
Raw Normal View History

2021-08-29 12:46:28 -05:00
{ version, meta, generic, ... }:
let pkg =
{ libxml2, bzip2, rapidjson, qt4, bison, flex, doxygen, coriolis-vlsisapd }:
{
name = "hurricane";
src = ../hurricane;
buildInputs = [ libxml2 qt4 bzip2 rapidjson coriolis-vlsisapd ];
nativeBuildInputs = [ bison flex doxygen ];
pythonImportsCheck = [ "Viewer" "Hurricane" "Cfg2" "Analog" ];
};
in generic pkg