coriolis/nix/coloquinte.nix

17 lines
401 B
Nix
Raw Normal View History

2021-08-22 06:40:56 -05:00
{ version, meta }:
2021-08-27 12:20:48 -05:00
{ lib, stdenv, python2, cmake, boost, qt4, ninja, coriolis-bootstrap, doxygen }:
2021-08-22 06:40:56 -05:00
let boostWithPython = boost.override { enablePython = true; python = python2; }; in
stdenv.mkDerivation {
pname = "coriolis-coloquinte";
src = ../coloquinte;
buildInputs = [ boostWithPython coriolis-bootstrap qt4 ];
2021-08-27 12:20:48 -05:00
nativeBuildInputs = [ cmake ninja doxygen ];
2021-08-22 06:40:56 -05:00
inherit version meta;
}