coriolis/nix/hurricane.nix

14 lines
427 B
Nix
Raw Normal View History

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