2017-06-02 17:49:32 +02:00
|
|
|
{ mkDerivation
|
2017-02-18 19:10:10 +01:00
|
|
|
, lib
|
|
|
|
, fetchurl
|
|
|
|
, kdoctools
|
2017-05-16 17:56:41 +02:00
|
|
|
, wrapGAppsHook
|
2017-02-26 13:49:15 +01:00
|
|
|
, extra-cmake-modules
|
2017-02-18 19:10:10 +01:00
|
|
|
, karchive
|
|
|
|
, kcrash
|
|
|
|
, kdbusaddons
|
|
|
|
, ki18n
|
|
|
|
, kiconthemes
|
|
|
|
, knewstuff
|
|
|
|
, knotifications
|
|
|
|
, knotifyconfig
|
|
|
|
, konsole
|
|
|
|
, kparts
|
|
|
|
, kwindowsystem
|
2017-06-25 09:48:49 +02:00
|
|
|
, qtx11extras
|
2017-02-18 19:10:10 +01:00
|
|
|
}:
|
2010-05-24 10:19:41 +02:00
|
|
|
|
2017-11-10 18:30:27 +01:00
|
|
|
mkDerivation rec {
|
2017-05-16 17:56:41 +02:00
|
|
|
pname = "yakuake";
|
2018-03-29 15:54:48 +02:00
|
|
|
version = "3.0.5";
|
2017-05-16 17:56:41 +02:00
|
|
|
name = "${pname}-${version}";
|
2010-05-24 10:19:41 +02:00
|
|
|
|
2017-02-18 19:10:10 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://download.kde.org/stable/${pname}/${version}/src/${name}.tar.xz";
|
2018-03-29 15:54:48 +02:00
|
|
|
sha256 = "021a9mnghffv2mrdl987mn7wbg8bk6bnf6xz8kn2nwsqxp9kpqh8";
|
2017-02-18 19:10:10 +01:00
|
|
|
};
|
2011-12-16 20:38:34 +01:00
|
|
|
|
2017-02-18 19:10:10 +01:00
|
|
|
buildInputs = [
|
|
|
|
karchive
|
|
|
|
kcrash
|
|
|
|
kdbusaddons
|
|
|
|
ki18n
|
|
|
|
kiconthemes
|
|
|
|
knewstuff
|
|
|
|
knotifications
|
|
|
|
knotifyconfig
|
|
|
|
kparts
|
|
|
|
kwindowsystem
|
2017-06-25 09:48:49 +02:00
|
|
|
qtx11extras
|
2017-02-18 19:10:10 +01:00
|
|
|
];
|
2010-05-24 10:19:41 +02:00
|
|
|
|
2017-05-16 17:56:41 +02:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
karchive
|
|
|
|
kcrash
|
|
|
|
kdbusaddons
|
|
|
|
ki18n
|
|
|
|
kiconthemes
|
|
|
|
knewstuff
|
|
|
|
knotifications
|
|
|
|
knotifyconfig
|
|
|
|
kparts
|
|
|
|
kwindowsystem
|
|
|
|
];
|
2015-03-16 19:54:06 +01:00
|
|
|
|
2017-05-16 17:56:41 +02:00
|
|
|
propagatedUserEnvPkgs = [ konsole ];
|
2017-02-18 19:10:10 +01:00
|
|
|
|
2017-05-16 17:56:41 +02:00
|
|
|
nativeBuildInputs = [
|
|
|
|
extra-cmake-modules kdoctools wrapGAppsHook
|
|
|
|
];
|
2017-02-18 19:10:10 +01:00
|
|
|
|
2017-05-16 17:56:41 +02:00
|
|
|
meta = {
|
|
|
|
homepage = https://yakuake.kde.org;
|
|
|
|
description = "Quad-style terminal emulator for KDE";
|
|
|
|
maintainers = with lib.maintainers; [ fridh ];
|
2018-07-22 22:22:26 +02:00
|
|
|
license = lib.licenses.gpl2;
|
2017-05-16 17:56:41 +02:00
|
|
|
};
|
2010-05-24 10:19:41 +02:00
|
|
|
}
|