about summary refs log tree commit diff
path: root/pkgs/data/icons/quintom-cursor-theme
diff options
context:
space:
mode:
authorDominic Shelton <frogamic@protonmail.com>2021-05-25 19:06:44 +1000
committerDominic Shelton <frogamic@protonmail.com>2021-05-31 21:43:52 +1000
commitfa97977180565f08a44569bcc04cf0945390e3a1 (patch)
treea3ef44023521a88de4b72885dbbb320266cb32b7 /pkgs/data/icons/quintom-cursor-theme
parent528a33727ff3db9712e79b21b6d120afb0e4221a (diff)
quintom-cursor-theme: init at 2019-10-24
Diffstat (limited to 'pkgs/data/icons/quintom-cursor-theme')
-rw-r--r--pkgs/data/icons/quintom-cursor-theme/default.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/data/icons/quintom-cursor-theme/default.nix b/pkgs/data/icons/quintom-cursor-theme/default.nix
new file mode 100644
index 0000000000000..0643e931e4199
--- /dev/null
+++ b/pkgs/data/icons/quintom-cursor-theme/default.nix
@@ -0,0 +1,27 @@
+{ stdenvNoCC, fetchFromGitLab, lib }:
+
+stdenvNoCC.mkDerivation {
+  pname = "quintom-cursor-theme";
+  version = "unstable-2019-10-24";
+
+  src = fetchFromGitLab {
+    owner = "Burning_Cube";
+    repo = "quintom-cursor-theme";
+    rev = "d23e57333e816033cf20481bdb47bb1245ed5d4d";
+    hash = "sha256-Sec2DSnWYal6wzYzP9W+DDuTKHsFHWdRYyMzliMU5bU=A";
+  };
+
+  installPhase = ''
+    mkdir -p $out/share/icons
+    for theme in "Quintom_Ink" "Quintom_Snow"; do
+      cp -r "$theme Cursors/$theme" $out/share/icons/
+    done
+  '';
+
+  meta = with lib; {
+    description = "A cursor theme designed to look decent";
+    homepage = "https://gitlab.com/Burning_Cube/quintom-cursor-theme";
+    platforms = platforms.unix;
+    license = with licenses; [ cc-by-sa-40 gpl3Only ];
+  };
+}