Remove kde4.yakuake
- Already updated to KDE 5 in Nixpkgs
This commit is contained in:
parent
d768dcd4f3
commit
fabce0c4a8
@ -1,63 +0,0 @@
|
|||||||
{ kdeDerivation
|
|
||||||
, lib
|
|
||||||
, fetchurl
|
|
||||||
, kdoctools
|
|
||||||
, kdeWrapper
|
|
||||||
, ecm
|
|
||||||
, karchive
|
|
||||||
, kcrash
|
|
||||||
, kdbusaddons
|
|
||||||
, ki18n
|
|
||||||
, kiconthemes
|
|
||||||
, knewstuff
|
|
||||||
, knotifications
|
|
||||||
, knotifyconfig
|
|
||||||
, konsole
|
|
||||||
, kparts
|
|
||||||
, kwindowsystem
|
|
||||||
}:
|
|
||||||
|
|
||||||
let
|
|
||||||
unwrapped = let
|
|
||||||
pname = "yakuake";
|
|
||||||
version = "3.0.2";
|
|
||||||
in kdeDerivation rec {
|
|
||||||
name = "${pname}-${version}";
|
|
||||||
|
|
||||||
src = fetchurl {
|
|
||||||
url = "http://download.kde.org/stable/${pname}/${version}/src/${name}.tar.xz";
|
|
||||||
sha256 = "0vcdji1k8d3pz7k6lkw8ighkj94zff2l2cf9v1avf83f4hjyfhg5";
|
|
||||||
};
|
|
||||||
|
|
||||||
buildInputs = [
|
|
||||||
karchive
|
|
||||||
kcrash
|
|
||||||
kdbusaddons
|
|
||||||
ki18n
|
|
||||||
kiconthemes
|
|
||||||
knewstuff
|
|
||||||
knotifications
|
|
||||||
knotifyconfig
|
|
||||||
kparts
|
|
||||||
kwindowsystem
|
|
||||||
];
|
|
||||||
|
|
||||||
nativeBuildInputs = [
|
|
||||||
ecm kdoctools
|
|
||||||
];
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
homepage = https://yakuake.kde.org;
|
|
||||||
description = "Quad-style terminal emulator for KDE";
|
|
||||||
maintainers = with lib.maintainers; [ fridh ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
in
|
|
||||||
kdeWrapper
|
|
||||||
{
|
|
||||||
inherit unwrapped;
|
|
||||||
targets = [ "bin/yakuake" ];
|
|
||||||
paths = [ konsole.unwrapped ];
|
|
||||||
}
|
|
@ -1,28 +1,63 @@
|
|||||||
{ stdenv, fetchurl, automoc4, cmake, gettext, perl, pkgconfig
|
{ kdeDerivation
|
||||||
, kdelibs, konsole }:
|
, lib
|
||||||
|
, fetchurl
|
||||||
|
, kdoctools
|
||||||
|
, kdeWrapper
|
||||||
|
, ecm
|
||||||
|
, karchive
|
||||||
|
, kcrash
|
||||||
|
, kdbusaddons
|
||||||
|
, ki18n
|
||||||
|
, kiconthemes
|
||||||
|
, knewstuff
|
||||||
|
, knotifications
|
||||||
|
, knotifyconfig
|
||||||
|
, konsole
|
||||||
|
, kparts
|
||||||
|
, kwindowsystem
|
||||||
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
|
unwrapped = let
|
||||||
pname = "yakuake";
|
pname = "yakuake";
|
||||||
version = "2.9.9";
|
version = "3.0.2";
|
||||||
in
|
in kdeDerivation rec {
|
||||||
stdenv.mkDerivation {
|
|
||||||
name = "${pname}-${version}";
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://kde/stable/${pname}/${version}/src/${pname}-${version}.tar.xz";
|
url = "http://download.kde.org/stable/${pname}/${version}/src/${name}.tar.xz";
|
||||||
sha256 = "0e0e4994c568f8091c9424e4aab35645436a9ff341c00b1cd1eab0ada0bf61ce";
|
sha256 = "0vcdji1k8d3pz7k6lkw8ighkj94zff2l2cf9v1avf83f4hjyfhg5";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ kdelibs ];
|
buildInputs = [
|
||||||
|
karchive
|
||||||
|
kcrash
|
||||||
|
kdbusaddons
|
||||||
|
ki18n
|
||||||
|
kiconthemes
|
||||||
|
knewstuff
|
||||||
|
knotifications
|
||||||
|
knotifyconfig
|
||||||
|
kparts
|
||||||
|
kwindowsystem
|
||||||
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [ automoc4 cmake gettext perl pkgconfig ];
|
nativeBuildInputs = [
|
||||||
|
ecm kdoctools
|
||||||
propagatedUserEnvPkgs = [ konsole ];
|
];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://yakuake.kde.org;
|
homepage = https://yakuake.kde.org;
|
||||||
description = "Quad-style terminal emulator for KDE";
|
description = "Quad-style terminal emulator for KDE";
|
||||||
inherit (kdelibs.meta) platforms;
|
maintainers = with lib.maintainers; [ fridh ];
|
||||||
maintainers = [ stdenv.lib.maintainers.urkud ];
|
|
||||||
};
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
in
|
||||||
|
kdeWrapper
|
||||||
|
{
|
||||||
|
inherit unwrapped;
|
||||||
|
targets = [ "bin/yakuake" ];
|
||||||
|
paths = [ konsole.unwrapped ];
|
||||||
}
|
}
|
||||||
|
@ -15967,7 +15967,7 @@ with pkgs;
|
|||||||
|
|
||||||
yabar = callPackage ../applications/window-managers/yabar { };
|
yabar = callPackage ../applications/window-managers/yabar { };
|
||||||
|
|
||||||
yakuake = kde5.callPackage ../applications/misc/yakuake/3.0.nix {};
|
yakuake = kde5.callPackage ../applications/misc/yakuake {};
|
||||||
|
|
||||||
yarp = callPackage ../applications/science/robotics/yarp {};
|
yarp = callPackage ../applications/science/robotics/yarp {};
|
||||||
|
|
||||||
@ -16794,8 +16794,6 @@ with pkgs;
|
|||||||
|
|
||||||
telepathy = callPackage ../applications/networking/instant-messengers/telepathy/kde {};
|
telepathy = callPackage ../applications/networking/instant-messengers/telepathy/kde {};
|
||||||
|
|
||||||
yakuake = callPackage ../applications/misc/yakuake { };
|
|
||||||
|
|
||||||
zanshin = callPackage ../applications/office/zanshin { };
|
zanshin = callPackage ../applications/office/zanshin { };
|
||||||
|
|
||||||
kwooty = callPackage ../applications/networking/newsreaders/kwooty { };
|
kwooty = callPackage ../applications/networking/newsreaders/kwooty { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user