coriolis/nix/ispd.nix

27 lines
690 B
Nix
Raw Normal View History

2021-08-27 10:27:53 -05:00
{ version, meta }:
2021-10-26 16:10:09 -05:00
{ lib, stdenv, cmake, ninja, python3, boost
2021-10-26 16:35:18 -05:00
, coriolis-bootstrap, coriolis-hurricane
2021-08-27 10:27:53 -05:00
, coriolis-crlcore, coriolis-flute, coriolis-knik
, coriolis-lefdef, coriolis-katabatic, libxml2, qt4 }:
2021-10-26 16:10:09 -05:00
let boostWithPython = boost.override { enablePython = true; python = python3; }; in
2021-08-27 10:27:53 -05:00
stdenv.mkDerivation {
pname = "coriolis-ispd";
src = ../ispd;
buildInputs = [
2021-10-26 16:10:09 -05:00
python3 boostWithPython coriolis-bootstrap libxml2
2021-10-26 16:35:18 -05:00
coriolis-hurricane coriolis-crlcore
2021-08-27 10:27:53 -05:00
coriolis-flute coriolis-knik coriolis-lefdef
coriolis-katabatic qt4
];
nativeBuildInputs = [ cmake ninja ];
2021-08-27 11:23:35 -05:00
inherit version;
2021-10-06 11:07:46 -05:00
meta = meta // { broken = true; license = lib.licenses.gpl2Plus; };
2021-08-27 10:27:53 -05:00
}