okteta: Move into own package

Okteta was removed from kde applications and will now be released
independently. So, we currently use the released version from 17.12.3.
This commit is contained in:
Bastian Köcher 2018-04-21 14:40:10 +02:00 committed by adisbladis
parent faed183206
commit 58f53dc4d4
No known key found for this signature in database
GPG Key ID: ED58F95069B004F5
2 changed files with 12 additions and 4 deletions

View File

@ -1,16 +1,22 @@
{
mkDerivation, lib,
mkDerivation, lib, fetchurl,
extra-cmake-modules, kdoctools,
qtscript, kconfig, kinit, karchive, kcrash,
kcmutils, kconfigwidgets, knewstuff, kparts, qca-qt5,
shared-mime-info
}:
mkDerivation {
let
version = "17.12.3";
in mkDerivation rec {
name = "okteta";
src = fetchurl {
url = "mirror://kde/stable/applications/${version}/src/${name}-${version}.tar.xz";
sha256 = "03wsv83l1cay2dpcsksad124wzan7kh8zxdw1h0yicn398kdbck4";
};
meta = {
license = with lib.licenses; [ gpl2 ];
maintainers = with lib.maintainers; [ peterhoeg ];
maintainers = with lib.maintainers; [ peterhoeg bkchr ];
};
nativeBuildInputs = [ qtscript extra-cmake-modules kdoctools ];
buildInputs = [ shared-mime-info ];

View File

@ -16419,7 +16419,9 @@ with pkgs;
akonadi akregator ark dolphin ffmpegthumbs filelight gwenview k3b
kaddressbook kate kcachegrind kcalc kcolorchooser kcontacts kdenlive kdf kdialog keditbookmarks
kget kgpg khelpcenter kig kleopatra kmail kmix kolourpaint kompare konsole
kontact korganizer krdc krfb ksystemlog kwalletmanager marble minuet okteta okular spectacle;
kontact korganizer krdc krfb ksystemlog kwalletmanager marble minuet okular spectacle;
okteta = libsForQt5.callPackage ../applications/editors/okteta { };
kdeconnect = libsForQt5.callPackage ../applications/misc/kdeconnect { };