Merge pull request #70679 from dtzWill/fix/ktorrent-mkderivation

ktorrent: mkDerivation
This commit is contained in:
Matthew Bauer 2019-11-07 17:22:40 -05:00 committed by GitHub
commit 71d91a9853
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;