about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorAndrey Golovizin <ag@sologoc.com>2018-06-13 21:16:51 +0200
committerAndrey Golovizin <ag@sologoc.com>2018-06-14 06:37:30 +0200
commit0b8e92a7fde68a7d1023fa504a6551e0b7046148 (patch)
tree6ad994c7bc24bfa6738979e2612058ba39c3b2d2 /pkgs
parente49dd6157b80ceafb265ad129a928bdb1512b727 (diff)
downloadnixlib-0b8e92a7fde68a7d1023fa504a6551e0b7046148.tar
nixlib-0b8e92a7fde68a7d1023fa504a6551e0b7046148.tar.gz
nixlib-0b8e92a7fde68a7d1023fa504a6551e0b7046148.tar.bz2
nixlib-0b8e92a7fde68a7d1023fa504a6551e0b7046148.tar.lz
nixlib-0b8e92a7fde68a7d1023fa504a6551e0b7046148.tar.xz
nixlib-0b8e92a7fde68a7d1023fa504a6551e0b7046148.tar.zst
nixlib-0b8e92a7fde68a7d1023fa504a6551e0b7046148.zip
ktorrent: fix build with CMake 3.11
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/networking/p2p/ktorrent/default.nix10
1 files changed, 9 insertions, 1 deletions
diff --git a/pkgs/applications/networking/p2p/ktorrent/default.nix b/pkgs/applications/networking/p2p/ktorrent/default.nix
index 219615abb02a..fbd01c388b0d 100644
--- a/pkgs/applications/networking/p2p/ktorrent/default.nix
+++ b/pkgs/applications/networking/p2p/ktorrent/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, cmake
+{ stdenv, fetchurl, fetchpatch, cmake
 , extra-cmake-modules, qtbase, qtscript
 , karchive, kcrash, kdnssd, ki18n, kio, knotifications, knotifyconfig
 , kdoctools, kross, kcmutils, kwindowsystem
@@ -22,6 +22,14 @@ stdenv.mkDerivation rec {
     libktorrent taglib libgcrypt kplotting
   ];
 
+  patches = [
+    # Fix build with CMake 3.11
+    (fetchpatch {
+      url = "https://cgit.kde.org/ktorrent.git/patch/?id=672c5076de7e3a526d9bdbb484a69e9386bc49f8";
+      sha256 = "1cn4rnbhadrsxqx50fawpd747azskavbjraygr6s11rh1wbfrxid";
+    })
+  ];
+
   enableParallelBuilding = true;
 
   meta = with stdenv.lib; {