3
0
Fork 0
forked from mirrors/nixpkgs

kde4: use cmake-2.8 instead of default, /cc #11097

This fixes kgamma breakage after cmake-3.4 update, and prevents future rot.
This commit is contained in:
Vladimír Čunát 2015-11-20 10:29:42 +01:00
parent 48409bd3f4
commit 1640e4263b

View file

@ -1,10 +1,11 @@
{ callPackage, runCommand, stdenv, fetchurl, qt4, cmake, automoc4, perl, pkgconfig
{ callPackage, runCommand, stdenv, fetchurl, qt4, cmake-2_8, automoc4, perl, pkgconfig
, release, branch, ignoreList, extraSubpkgs
}:
let
inherit (stdenv.lib) filter fold;
inherit (builtins) getAttr hasAttr remoteAttrs listToAttrs tail head;
cmake = cmake-2_8;
in
rec {
manifest = import (./. + "/${release}.nix");