coriolis/nix/coloquinte.nix

17 lines
384 B
Nix
Raw Normal View History

2021-08-22 06:40:56 -05:00
{ version, meta }:
2021-08-23 03:44:07 -05:00
{ lib, stdenv, python2, cmake, boost, qt4, ninja, coriolis-bootstrap }:
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 ];
nativeBuildInputs = [ cmake ninja ];
inherit version meta;
}