Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
37 lines
927 B
Nix
37 lines
927 B
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "kde-gruvbox";
|
|
version = "0-unstable-2015-08-09";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "printesoi";
|
|
repo = "kde-gruvbox";
|
|
rev = "2dd95283076d7194345a460edb3630cfd020759c";
|
|
sha256 = "sha256-ppAeEfwoHZg7XEj3zGc+uq4Z6hUgJNM2EjuDsc8pFQo=";
|
|
};
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/share/{plasma/desktoptheme,yakuake/kns_skins}
|
|
cp -R color-schemes konsole $out/share
|
|
cp -R plasma5/gruvbox $out/share/plasma/desktoptheme
|
|
cp -R yakuake/breeze-gruvbox-dark $out/share/yakuake/kns_skins
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Suite of themes for KDE applications that match the retro gruvbox colorscheme";
|
|
homepage = "https://github.com/printesoi/kde-gruvbox";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.ymarkus ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|