adc39a9b98
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. This update was made based on information from https://repology.org/metapackage/yakuake/versions. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 3.0.5 with grep in /nix/store/8ynmx32jvp39xw8x1n6spjxn7acamcys-yakuake-3.0.5 - directory tree listing: https://gist.github.com/b997d1ba53b4383b309cdbe6423958b6
70 lines
1.2 KiB
Nix
70 lines
1.2 KiB
Nix
{ mkDerivation
|
|
, lib
|
|
, fetchurl
|
|
, kdoctools
|
|
, wrapGAppsHook
|
|
, extra-cmake-modules
|
|
, karchive
|
|
, kcrash
|
|
, kdbusaddons
|
|
, ki18n
|
|
, kiconthemes
|
|
, knewstuff
|
|
, knotifications
|
|
, knotifyconfig
|
|
, konsole
|
|
, kparts
|
|
, kwindowsystem
|
|
, qtx11extras
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "yakuake";
|
|
version = "3.0.5";
|
|
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
|
|
qtx11extras
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
karchive
|
|
kcrash
|
|
kdbusaddons
|
|
ki18n
|
|
kiconthemes
|
|
knewstuff
|
|
knotifications
|
|
knotifyconfig
|
|
kparts
|
|
kwindowsystem
|
|
];
|
|
|
|
propagatedUserEnvPkgs = [ konsole ];
|
|
|
|
nativeBuildInputs = [
|
|
extra-cmake-modules kdoctools wrapGAppsHook
|
|
];
|
|
|
|
meta = {
|
|
homepage = https://yakuake.kde.org;
|
|
description = "Quad-style terminal emulator for KDE";
|
|
maintainers = with lib.maintainers; [ fridh ];
|
|
};
|
|
}
|