temporary commit

This commit is contained in:
Las Safin 2021-08-22 05:47:36 +00:00
parent 3bef114e97
commit be6260ab64
No known key found for this signature in database
GPG Key ID: E7FA928911B61ED6
1 changed files with 3 additions and 2 deletions

View File

@ -20,7 +20,8 @@
nixpkgsFor = forAllSystems (system: import nixpkgs { inherit system; overlays = [ self.overlay ]; }); nixpkgsFor = forAllSystems (system: import nixpkgs { inherit system; overlays = [ self.overlay ]; });
coriolis = coriolis =
{ lib, stdenv, python2, cmake_2_8, boost, bison, flex, libxml2, rapidjson, which, qt4 }: { lib, stdenv, python2, cmake_2_8, boost, bison, flex
, libxml2, rapidjson, which, qt4, zlib, bzip2 }:
let boostWithPython = boost.override { enablePython = true; python = python2; }; in let boostWithPython = boost.override { enablePython = true; python = python2; }; in
stdenv.mkDerivation { stdenv.mkDerivation {
name = "coriolis-${version}"; name = "coriolis-${version}";
@ -52,7 +53,7 @@
checkPhase = "true"; checkPhase = "true";
buildInputs = [ python2 boostWithPython libxml2 rapidjson qt4 ]; buildInputs = [ python2 boostWithPython libxml2 rapidjson qt4 zlib bzip2 ];
nativeBuildInputs = [ cmake_2_8 bison flex which ]; nativeBuildInputs = [ cmake_2_8 bison flex which ];
meta = with lib; { meta = with lib; {