kget: 20170903 -> 17.12.0
This commit is contained in:
parent
300ee45dfb
commit
8a1525833a
@ -102,6 +102,7 @@ let
|
|||||||
kdepim-apps-libs = callPackage ./kdepim-apps-libs {};
|
kdepim-apps-libs = callPackage ./kdepim-apps-libs {};
|
||||||
kdf = callPackage ./kdf.nix {};
|
kdf = callPackage ./kdf.nix {};
|
||||||
keditbookmarks = callPackage ./keditbookmarks.nix {};
|
keditbookmarks = callPackage ./keditbookmarks.nix {};
|
||||||
|
kget = callPackage ./kget.nix {};
|
||||||
kgpg = callPackage ./kgpg.nix {};
|
kgpg = callPackage ./kgpg.nix {};
|
||||||
khelpcenter = callPackage ./khelpcenter.nix {};
|
khelpcenter = callPackage ./khelpcenter.nix {};
|
||||||
kholidays = callPackage ./kholidays.nix {};
|
kholidays = callPackage ./kholidays.nix {};
|
||||||
|
22
pkgs/applications/kde/kget.nix
Normal file
22
pkgs/applications/kde/kget.nix
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
{
|
||||||
|
mkDerivation, lib,
|
||||||
|
extra-cmake-modules, kdoctools,
|
||||||
|
kdelibs4support, libgcrypt, libktorrent, qca-qt5, qgpgme,
|
||||||
|
kcmutils, kcompletion, kcoreaddons, knotifyconfig, kparts, kwallet, kwidgetsaddons, kwindowsystem, kxmlgui
|
||||||
|
}:
|
||||||
|
|
||||||
|
mkDerivation {
|
||||||
|
name = "kget";
|
||||||
|
|
||||||
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
kdelibs4support libgcrypt libktorrent qca-qt5 qgpgme
|
||||||
|
kcmutils kcompletion kcoreaddons knotifyconfig kparts kwallet kwidgetsaddons kwindowsystem kxmlgui
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
license = with licenses; [ gpl2 ];
|
||||||
|
maintainers = with maintainers; [ peterhoeg ];
|
||||||
|
};
|
||||||
|
}
|
@ -1,33 +0,0 @@
|
|||||||
{
|
|
||||||
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 ];
|
|
||||||
};
|
|
||||||
}
|
|
@ -2953,10 +2953,6 @@ with pkgs;
|
|||||||
|
|
||||||
kpcli = callPackage ../tools/security/kpcli { };
|
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 { };
|
krename = libsForQt5.callPackage ../applications/misc/krename { };
|
||||||
|
|
||||||
kronometer = libsForQt5.callPackage ../tools/misc/kronometer { };
|
kronometer = libsForQt5.callPackage ../tools/misc/kronometer { };
|
||||||
@ -15555,7 +15551,7 @@ with pkgs;
|
|||||||
inherit (kdeApplications)
|
inherit (kdeApplications)
|
||||||
akonadi akregator ark dolphin ffmpegthumbs filelight gwenview k3b
|
akonadi akregator ark dolphin ffmpegthumbs filelight gwenview k3b
|
||||||
kaddressbook kate kcachegrind kcalc kcolorchooser kcontacts kdenlive kdf keditbookmarks
|
kaddressbook kate kcachegrind kcalc kcolorchooser kcontacts kdenlive kdf keditbookmarks
|
||||||
kgpg khelpcenter kig kleopatra kmail kmix kolourpaint kompare konsole
|
kget kgpg khelpcenter kig kleopatra kmail kmix kolourpaint kompare konsole
|
||||||
kontact korganizer krdc krfb kwalletmanager marble minuet okteta okular spectacle;
|
kontact korganizer krdc krfb kwalletmanager marble minuet okteta okular spectacle;
|
||||||
|
|
||||||
kdeconnect = libsForQt5.callPackage ../applications/misc/kdeconnect { };
|
kdeconnect = libsForQt5.callPackage ../applications/misc/kdeconnect { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user