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