about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2019-11-07 17:22:40 -0500
committerGitHub <noreply@github.com>2019-11-07 17:22:40 -0500
commit71d91a9853139e5d867731ec58b9ae5740a8db1a (patch)
tree4c8fea42da0496f25d2260cbe8cedc06c2512bb1 /pkgs
parentfdb5d33ce7e84b9024a38a4de3b96ed8c3d6a65c (diff)
parentd6451a796bab18599e1585f9b682369ad815afc9 (diff)
Merge pull request #70679 from dtzWill/fix/ktorrent-mkderivation
ktorrent: mkDerivation
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/networking/p2p/ktorrent/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/networking/p2p/ktorrent/default.nix b/pkgs/applications/networking/p2p/ktorrent/default.nix
index 535991312f1d8..e38378d09b32c 100644
--- a/pkgs/applications/networking/p2p/ktorrent/default.nix
+++ b/pkgs/applications/networking/p2p/ktorrent/default.nix
@@ -1,11 +1,11 @@
-{ stdenv, fetchurl, fetchpatch, cmake
+{ mkDerivation, lib, fetchurl, fetchpatch, cmake
 , extra-cmake-modules, qtbase, qtscript
 , karchive, kcrash, kdnssd, ki18n, kio, knotifications, knotifyconfig
 , kdoctools, kross, kcmutils, kwindowsystem
 , libktorrent, taglib, libgcrypt, kplotting
 }:
 
-stdenv.mkDerivation rec {
+mkDerivation rec {
   pname = "ktorrent";
   version = "${libktorrent.mainVersion}";
 
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
 
   enableParallelBuilding = true;
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     description = "KDE integrated BtTorrent client";
     homepage    = https://www.kde.org/applications/internet/ktorrent/;
     license = licenses.gpl2;