coriolis/nix/katabatic.nix

20 lines
431 B
Nix
Raw Permalink Normal View History

{ generic, ... }:
2021-08-27 10:16:06 -05:00
let pkg =
2021-10-26 16:35:18 -05:00
{ lib, coriolis-hurricane
, coriolis-crlcore, coriolis-flute, coriolis-knik
, qt4, doxygen }:
{
name = "katabatic";
src = ../katabatic;
2021-08-27 10:16:06 -05:00
buildInputs = [
2021-10-26 16:35:18 -05:00
coriolis-hurricane coriolis-crlcore
coriolis-flute coriolis-knik qt4
];
nativeBuildInputs = [ doxygen ];
pythonImportsCheck = [ "Katabatic" ];
2021-10-06 11:07:46 -05:00
meta.license = lib.licenses.gpl2Plus;
};
in generic pkg