nixpkgs/pkgs/applications/misc/yakuake/default.nix

71 lines
1.2 KiB
Nix
Raw Normal View History

{ mkDerivation
, lib
, fetchurl
, kdoctools
2017-05-16 15:56:41 +00:00
, wrapGAppsHook
, extra-cmake-modules
, karchive
, kcrash
, kdbusaddons
, ki18n
, kiconthemes
, knewstuff
, knotifications
, knotifyconfig
, konsole
, kparts
, kwindowsystem
2017-06-25 07:48:49 +00:00
, qtx11extras
}:
2017-11-10 17:30:27 +00:00
mkDerivation rec {
2017-05-16 15:56:41 +00:00
pname = "yakuake";
version = "3.0.5";
2017-05-16 15:56:41 +00:00
name = "${pname}-${version}";
src = fetchurl {
url = "http://download.kde.org/stable/${pname}/${version}/src/${name}.tar.xz";
sha256 = "021a9mnghffv2mrdl987mn7wbg8bk6bnf6xz8kn2nwsqxp9kpqh8";
};
buildInputs = [
karchive
kcrash
kdbusaddons
ki18n
kiconthemes
knewstuff
knotifications
knotifyconfig
kparts
kwindowsystem
2017-06-25 07:48:49 +00:00
qtx11extras
];
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-05-16 15:56:41 +00:00
nativeBuildInputs = [
extra-cmake-modules kdoctools wrapGAppsHook
];
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 ];
2018-07-22 20:22:26 +00:00
license = lib.licenses.gpl2;
2017-05-16 15:56:41 +00:00
};
}