Skip to content

Commit 758c597

Browse files
committedSep 10, 2017
kget: init at 20170903
1 parent 23a58b9 commit 758c597

File tree

2 files changed

+37
-0
lines changed

2 files changed

+37
-0
lines changed
 

Diff for: ‎pkgs/applications/networking/kget/default.nix

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
mkDerivation, lib, fetchFromGitHub,
3+
extra-cmake-modules, kdoctools, makeWrapper,
4+
kdelibs4support, libgcrypt, libktorrent, qca-qt5, qgpgme,
5+
kcmutils, kcompletion, kcoreaddons, knotifyconfig, kparts, kwallet, kwidgetsaddons, kwindowsystem, kxmlgui
6+
}:
7+
8+
let
9+
pname = "kget";
10+
version = "20170903";
11+
12+
in mkDerivation {
13+
name = "${pname}-${version}";
14+
src = fetchFromGitHub {
15+
owner = "KDE";
16+
repo = pname;
17+
rev = "739c0b399faf5a393c7436c0771662596b840fdc";
18+
sha256 = "0rn6a4xd9zmf9sdjd5b4rh8yky6qm6ffjgjpn4snkdjsn6vm6y43";
19+
};
20+
nativeBuildInputs = [ extra-cmake-modules kdoctools makeWrapper ];
21+
22+
buildInputs = [
23+
kdelibs4support libgcrypt libktorrent qca-qt5 qgpgme
24+
kcmutils kcompletion kcoreaddons knotifyconfig kparts kwallet kwidgetsaddons kwindowsystem kxmlgui
25+
];
26+
27+
enableParallelBuilding = true;
28+
29+
meta = with lib; {
30+
license = licenses.gpl2;
31+
maintainers = with maintainers; [ peterhoeg ];
32+
};
33+
}

Diff for: ‎pkgs/top-level/all-packages.nix

+4
Original file line numberDiff line numberDiff line change
@@ -2805,6 +2805,10 @@ with pkgs;
28052805

28062806
kpcli = callPackage ../tools/security/kpcli { };
28072807

2808+
# kget is part of kde-applications but the released version is still for KDE 4
2809+
# This needs to move to the proper place when the "frameworks" branch is released
2810+
kget = libsForQt5.callPackage ../applications/networking/kget { };
2811+
28082812
krename = libsForQt5.callPackage ../applications/misc/krename { };
28092813

28102814
kronometer = libsForQt5.callPackage ../tools/misc/kronometer { };

0 commit comments

Comments
 (0)