kde414: build with kdelibs-4.14.12

Upstream changes to the build system required adjusting many packages'
dependencies. On the Nixpkgs side, we no longer propagate the dependency
on cmake (to reduce closure size), so downstream dependencies had to be
adjusted for most packages that depend on kdelibs.
This commit is contained in:
Thomas Tuegel
2015-09-27 10:11:01 -05:00
parent dd264938bc
commit 2e0589b4ca
56 changed files with 385 additions and 210 deletions

View File

@@ -1,4 +1,6 @@
{ stdenv, fetchurl, cmake, kdelibs, gettext }:
{ stdenv, fetchurl, automoc4, cmake, perl, pkgconfig
, kdelibs, gettext
}:
stdenv.mkDerivation rec {
name = "kdiff3-0.9.98";
@@ -8,7 +10,7 @@ stdenv.mkDerivation rec {
};
buildInputs = [ kdelibs ];
nativeBuildInputs = [ cmake gettext ];
nativeBuildInputs = [ automoc4 cmake gettext perl pkgconfig ];
meta = {
homepage = http://kdiff3.sourceforge.net/;