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

64 lines
1.0 KiB
Nix
Raw Normal View History

2016-08-02 06:39:55 +00:00
{ kdeDerivation
2016-01-22 10:36:00 +00:00
, lib
, fetchurl
2016-08-02 06:39:55 +00:00
, kdoctools
, kdeWrapper
, ecm
2016-01-22 10:36:00 +00:00
, karchive
, kcrash
, kdbusaddons
, ki18n
, kiconthemes
, knewstuff
, knotifications
, knotifyconfig
, konsole
, kparts
, kwindowsystem
}:
let
2016-08-02 06:39:55 +00:00
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 ];
};
2016-01-22 10:36:00 +00:00
};
2016-08-02 06:39:55 +00:00
in
kdeWrapper unwrapped
{
targets = [ "bin/yakuake" ];
paths = [ konsole.unwrapped ];
2016-01-22 10:36:00 +00:00
}
2016-08-02 06:39:55 +00:00