about summary refs log tree commit diff
path: root/pkgs/by-name/gr
diff options
context:
space:
mode:
authorEmily Trau <13267947+emilytrau@users.noreply.github.com>2023-12-02 01:26:30 +1100
committerGitHub <noreply@github.com>2023-12-02 01:26:30 +1100
commit475653dc2fa7d8c40df5c86a994811f4d877d5e4 (patch)
treeb2e6eac37f96aa0335bae336b6873b72a8a0ba1c /pkgs/by-name/gr
parenteb7947e3996d45fd8325c3d7c60f8a7c5065665c (diff)
parent54992c003306e990b0f564f8b5a4be79110c6e20 (diff)
downloadnixlib-475653dc2fa7d8c40df5c86a994811f4d877d5e4.tar
nixlib-475653dc2fa7d8c40df5c86a994811f4d877d5e4.tar.gz
nixlib-475653dc2fa7d8c40df5c86a994811f4d877d5e4.tar.bz2
nixlib-475653dc2fa7d8c40df5c86a994811f4d877d5e4.tar.lz
nixlib-475653dc2fa7d8c40df5c86a994811f4d877d5e4.tar.xz
nixlib-475653dc2fa7d8c40df5c86a994811f4d877d5e4.tar.zst
nixlib-475653dc2fa7d8c40df5c86a994811f4d877d5e4.zip
Merge pull request #271268 from RGBCube/gruvbox-plus-icons
gruvbox-plus-icons: init at unstable-2023-11-30
Diffstat (limited to 'pkgs/by-name/gr')
-rw-r--r--pkgs/by-name/gr/gruvbox-plus-icons/package.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/by-name/gr/gruvbox-plus-icons/package.nix b/pkgs/by-name/gr/gruvbox-plus-icons/package.nix
new file mode 100644
index 000000000000..5c0424e49bc9
--- /dev/null
+++ b/pkgs/by-name/gr/gruvbox-plus-icons/package.nix
@@ -0,0 +1,30 @@
+{ lib, stdenvNoCC, fetchFromGitHub }:
+
+stdenvNoCC.mkDerivation {
+  pname = "gruvbox-plus-icons";
+  version = "unstable-2023-11-30";
+
+  src = fetchFromGitHub {
+    owner = "SylEleuth";
+    repo = "gruvbox-plus-icon-pack";
+    rev = "5ce3ef1ae9d8360e4aadfcf73842df9a417dd53b";
+    hash = "sha256-xS6ijyRhc9CaZVERLjqebbNsSbPoFUVTAutOjWiOUKc=";
+  };
+
+  installPhase = ''
+    runHook preInstall
+
+    mkdir -p $out/share/icons
+    cp -r Gruvbox-Plus-Dark $out/share/icons/
+
+    runHook postInstall
+  '';
+
+  meta = {
+    description = "Icon pack for Linux desktops based on the Gruvbox color theme";
+    homepage = "https://github.com/SylEleuth/gruvbox-plus-icon-pack";
+    license = lib.licenses.gpl3Only;
+    platforms = lib.platforms.linux;
+    maintainers = with lib.maintainers; [ RGBCube ];
+  };
+}