Use CMake 2.8

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

View File

@ -20,7 +20,7 @@
nixpkgsFor = forAllSystems (system: import nixpkgs { inherit system; overlays = [ self.overlay ]; });
coriolis =
{ lib, stdenv, python2, cmake, boost, bison, flex, libxml2, rapidjson, which, qt4 }:
{ lib, stdenv, python2, cmake_2_8, boost, bison, flex, libxml2, rapidjson, which, qt4 }:
let boostWithPython = boost.override { enablePython = true; python = python2; }; in
stdenv.mkDerivation {
name = "coriolis-${version}";
@ -53,7 +53,7 @@
checkPhase = "true";
buildInputs = [ python2 boostWithPython libxml2 rapidjson qt4 ];
nativeBuildInputs = [ cmake bison flex which ];
nativeBuildInputs = [ cmake_2_8 bison flex which ];
meta = with lib; {
description = "Coriolis is a free database, placement tool and routing tool for VLSI design.";