kget: init at 20170903
This commit is contained in:
parent
23a58b9b8a
commit
758c597696
33
pkgs/applications/networking/kget/default.nix
Normal file
33
pkgs/applications/networking/kget/default.nix
Normal file
@ -0,0 +1,33 @@
|
||||
{
|
||||
mkDerivation, lib, fetchFromGitHub,
|
||||
extra-cmake-modules, kdoctools, makeWrapper,
|
||||
kdelibs4support, libgcrypt, libktorrent, qca-qt5, qgpgme,
|
||||
kcmutils, kcompletion, kcoreaddons, knotifyconfig, kparts, kwallet, kwidgetsaddons, kwindowsystem, kxmlgui
|
||||
}:
|
||||
|
||||
let
|
||||
pname = "kget";
|
||||
version = "20170903";
|
||||
|
||||
in mkDerivation {
|
||||
name = "${pname}-${version}";
|
||||
src = fetchFromGitHub {
|
||||
owner = "KDE";
|
||||
repo = pname;
|
||||
rev = "739c0b399faf5a393c7436c0771662596b840fdc";
|
||||
sha256 = "0rn6a4xd9zmf9sdjd5b4rh8yky6qm6ffjgjpn4snkdjsn6vm6y43";
|
||||
};
|
||||
nativeBuildInputs = [ extra-cmake-modules kdoctools makeWrapper ];
|
||||
|
||||
buildInputs = [
|
||||
kdelibs4support libgcrypt libktorrent qca-qt5 qgpgme
|
||||
kcmutils kcompletion kcoreaddons knotifyconfig kparts kwallet kwidgetsaddons kwindowsystem kxmlgui
|
||||
];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = with lib; {
|
||||
license = licenses.gpl2;
|
||||
maintainers = with maintainers; [ peterhoeg ];
|
||||
};
|
||||
}
|
@ -2805,6 +2805,10 @@ with pkgs;
|
||||
|
||||
kpcli = callPackage ../tools/security/kpcli { };
|
||||
|
||||
# kget is part of kde-applications but the released version is still for KDE 4
|
||||
# This needs to move to the proper place when the "frameworks" branch is released
|
||||
kget = libsForQt5.callPackage ../applications/networking/kget { };
|
||||
|
||||
krename = libsForQt5.callPackage ../applications/misc/krename { };
|
||||
|
||||
kronometer = libsForQt5.callPackage ../tools/misc/kronometer { };
|
||||
|
Loading…
Reference in New Issue
Block a user