summary refs log tree commit diff
path: root/pkgs/applications/office/zanshin
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2015-09-27 10:11:01 -0500
committerThomas Tuegel <ttuegel@gmail.com>2015-09-27 15:08:12 -0500
commit2e0589b4ca8f43dbce3e5af91c6e4375681ebee5 (patch)
treee2b3b4f6ec45ed280d298363f3a40eb2a510f789 /pkgs/applications/office/zanshin
parentdd264938bc1df93a66f7647d9ace267a241a3da7 (diff)
downloadnixpkgs-2e0589b4ca8f43dbce3e5af91c6e4375681ebee5.tar
nixpkgs-2e0589b4ca8f43dbce3e5af91c6e4375681ebee5.tar.gz
nixpkgs-2e0589b4ca8f43dbce3e5af91c6e4375681ebee5.tar.bz2
nixpkgs-2e0589b4ca8f43dbce3e5af91c6e4375681ebee5.tar.lz
nixpkgs-2e0589b4ca8f43dbce3e5af91c6e4375681ebee5.tar.xz
nixpkgs-2e0589b4ca8f43dbce3e5af91c6e4375681ebee5.tar.zst
nixpkgs-2e0589b4ca8f43dbce3e5af91c6e4375681ebee5.zip
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.
Diffstat (limited to 'pkgs/applications/office/zanshin')
-rw-r--r--pkgs/applications/office/zanshin/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/applications/office/zanshin/default.nix b/pkgs/applications/office/zanshin/default.nix
index 12334288254..7ae758d7e4f 100644
--- a/pkgs/applications/office/zanshin/default.nix
+++ b/pkgs/applications/office/zanshin/default.nix
@@ -1,4 +1,5 @@
-{ stdenv, fetchurl, kdelibs, kdepimlibs, boost }:
+{ stdenv, fetchurl, automoc4, cmake, perl, pkgconfig
+, kdelibs, kdepimlibs, boost }:
 
 stdenv.mkDerivation rec {
   name = "zanshin-0.2.1";
@@ -8,6 +9,8 @@ stdenv.mkDerivation rec {
     sha256 = "155k72vk7kw0p0x9dhlky6q017kanzcbwvp4dpf1hcbr1dsr55fx";
   };
 
+  nativeBuildInputs = [ automoc4 cmake perl pkgconfig ];
+
   buildInputs = [ kdelibs kdepimlibs boost ];
 
   meta = {