mirror of
https://github.com/RGBCube/ncc
synced 2025-08-02 13:07:46 +00:00
Update gruvbox icon theme
This commit is contained in:
parent
04ff9e845d
commit
e3ee16968a
1 changed files with 29 additions and 12 deletions
|
@ -1,30 +1,47 @@
|
||||||
{ lib, stdenvNoCC, fetchFromGitHub }:
|
{
|
||||||
|
lib
|
||||||
|
, stdenvNoCC
|
||||||
|
, fetchFromGitHub
|
||||||
|
, gtk3
|
||||||
|
, breeze-icons
|
||||||
|
, gnome-icon-theme
|
||||||
|
, hicolor-icon-theme
|
||||||
|
}:
|
||||||
|
|
||||||
stdenvNoCC.mkDerivation {
|
stdenvNoCC.mkDerivation rec {
|
||||||
pname = "gruvbox-plus-icons";
|
pname = "gruvbox-plus-icons";
|
||||||
version = "2023-11-30";
|
version = "unstable-2023-12-07";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "SylEleuth";
|
owner = "SylEleuth";
|
||||||
repo = "gruvbox-plus-icon-pack";
|
repo = "gruvbox-plus-icon-pack";
|
||||||
rev = "5ce3ef1ae9d8360e4aadfcf73842df9a417dd53b";
|
rev = "f3109979fe93b31ea14eb2d5c04247a895302ea0";
|
||||||
hash = "sha256-xS6ijyRhc9CaZVERLjqebbNsSbPoFUVTAutOjWiOUKc=";
|
sha256 = "sha256-EijTEDkPmcDcMhCuL6fOWjU9eXFUwmeOEwfGlxadb1U=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ gtk3 ];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ breeze-icons gnome-icon-theme hicolor-icon-theme ];
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
runHook preInstall
|
runHook preInstall
|
||||||
|
|
||||||
mkdir -p $out/share/icons
|
mkdir -p $out/share/icons
|
||||||
cp -r Gruvbox-Plus-Dark $out/share/icons/
|
cp -r Gruvbox-Plus-Dark $out/share/icons/
|
||||||
|
gtk-update-icon-cache $out/share/icons/Gruvbox-Plus-Dark
|
||||||
|
|
||||||
runHook postInstall
|
runHook postInstall
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
dontDropIconThemeCache = true;
|
||||||
|
dontBuild = true;
|
||||||
|
dontConfigure = true;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Gruvbox Plus icon pack for Linux desktops based on the Gruvbox color theme.";
|
description = "Icon pack for Linux desktops based on the Gruvbox color scheme";
|
||||||
homepage = "https://github.com/SylEleuth/gruvbox-plus-icon-pack";
|
homepage = "https://github.com/SylEleuth/gruvbox-plus-icon-pack";
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3Only;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = with maintainers; [ RGBCube ];
|
maintainers = with maintainers; [ eureka-cpu ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue