From be6260ab64bf2cd322db080642503248cc267829 Mon Sep 17 00:00:00 2001 From: Las Safin Date: Sun, 22 Aug 2021 05:47:36 +0000 Subject: [PATCH] temporary commit --- flake.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 3bafaf80..7f56207f 100644 --- a/flake.nix +++ b/flake.nix @@ -20,7 +20,8 @@ nixpkgsFor = forAllSystems (system: import nixpkgs { inherit system; overlays = [ self.overlay ]; }); 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 stdenv.mkDerivation { name = "coriolis-${version}"; @@ -52,7 +53,7 @@ checkPhase = "true"; - buildInputs = [ python2 boostWithPython libxml2 rapidjson qt4 ]; + buildInputs = [ python2 boostWithPython libxml2 rapidjson qt4 zlib bzip2 ]; nativeBuildInputs = [ cmake_2_8 bison flex which ]; meta = with lib; {