gruvbox-gtk-theme: init at unstable-2022-12-09

This commit is contained in:
Matheus Vieira 2022-12-19 19:40:52 -03:00
parent 50c3204e89
commit 19ae60662f
2 changed files with 44 additions and 0 deletions

View file

@ -0,0 +1,42 @@
{ lib
, stdenvNoCC
, fetchFromGitHub
, gnome-themes-extra
, gtk-engine-murrine
}:
stdenvNoCC.mkDerivation rec {
pname = "gruvbox-gtk-theme";
version = "unstable-2022-12-09";
src = fetchFromGitHub {
owner = "Fausto-Korpsvart";
repo = "Gruvbox-GTK-Theme";
rev = "c3172d8dcba66f4125a014d280d41e23f0b95cad";
sha256 = "1411mjlcj1d6kw3d3h1w9zsr0a08bzl5nddkkbv7w7lf67jy9b22";
};
propagatedUserEnvPkgs = [
gtk-engine-murrine
];
buildInputs = [
gnome-themes-extra
];
dontBuild = true;
installPhase = ''
runHook preInstall
mkdir -p $out/share/themes
cp -a themes/* $out/share/themes
runHook postInstall
'';
meta = with lib; {
description = "A Gtk theme based on the Gruvbox colour pallete";
homepage = "https://www.pling.com/p/1681313/";
license = licenses.gpl3Only;
platforms = platforms.unix;
maintainers = [ maintainers.math-42 ];
};
}

View file

@ -26627,6 +26627,8 @@ with pkgs;
inherit (plasma5Packages) breeze-icons;
};
gruvbox-gtk-theme = callPackage ../data/themes/gruvbox-gtk-theme {};
gubbi-font = callPackage ../data/fonts/gubbi { };
gyre-fonts = callPackage ../data/fonts/gyre {};