about summary refs log tree commit diff
path: root/pkgs/data/icons
diff options
context:
space:
mode:
authorLily Foster <lily@lily.flowers>2023-09-12 06:49:46 -0400
committerGitHub <noreply@github.com>2023-09-12 06:49:46 -0400
commit9f9d9a6db03c1d78fe7b3030def18b625827382f (patch)
tree1d8b7a5fcd13408247cc64331f237f27833df58f /pkgs/data/icons
parent651bacfe240f3f4491d834651191d98fce20066d (diff)
parentef8ed516be809064c7b720b06f68bbb3f79002f1 (diff)
Merge pull request #251846 from Ashvith10/tau-hydrogen-icon-theme
tau-hydrogen: init at 1.0.11
Diffstat (limited to 'pkgs/data/icons')
-rw-r--r--pkgs/data/icons/tau-hydrogen/default.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/pkgs/data/icons/tau-hydrogen/default.nix b/pkgs/data/icons/tau-hydrogen/default.nix
new file mode 100644
index 0000000000000..3f7aa63526dd1
--- /dev/null
+++ b/pkgs/data/icons/tau-hydrogen/default.nix
@@ -0,0 +1,36 @@
+{
+  stdenv,
+  lib,
+  fetchFromGitHub,
+  meson,
+  ninja,
+  librsvg,
+  xorg
+}:
+
+stdenv.mkDerivation (finalAttrs: {
+  pname = "tau-hydrogen";
+  version = "1.0.11";
+
+  src = fetchFromGitHub {
+    owner = "tau-OS";
+    repo = "tau-hydrogen";
+    rev = finalAttrs.version;
+    hash = "sha256-ECrRWWS/Am0lfCIJw/BVZg53oLw79Im8d8KgAYxE+pw=";
+  };
+
+  nativeBuildInputs = [
+    meson
+    ninja
+    librsvg
+    xorg.xcursorgen
+  ];
+
+  meta = with lib; {
+    description = "The GTK icon theme for tauOS";
+    homepage = "https://github.com/tau-OS/tau-hydrogen";
+    license = licenses.gpl3Only;
+    platforms = platforms.unix;
+    maintainers = with maintainers; [ ashvith-shetty ];
+  };
+})