summary refs log tree commit diff
path: root/pkgs/data
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2017-09-03 15:54:32 +0100
committerGitHub <noreply@github.com>2017-09-03 15:54:32 +0100
commitc5880c08ab332e2d12617db55a4800d492cdf0e8 (patch)
tree47ce09ba256707fe99489a7eaa9bc99b61156309 /pkgs/data
parent526b4ebc451c6b8839ac3fbc320c3a3f3e70825a (diff)
parent2b134fd3886ca24297355bf25e021025800250bf (diff)
Merge pull request #28923 from xtruder/pkgs/numix-cursor-theme/init
numix-cursor-theme: init at 2016011
Diffstat (limited to 'pkgs/data')
-rw-r--r--pkgs/data/icons/numix-cursor-theme/default.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/pkgs/data/icons/numix-cursor-theme/default.nix b/pkgs/data/icons/numix-cursor-theme/default.nix
new file mode 100644
index 0000000000000..883276b00a8c6
--- /dev/null
+++ b/pkgs/data/icons/numix-cursor-theme/default.nix
@@ -0,0 +1,31 @@
+{ stdenv, fetchFromGitHub }:
+
+stdenv.mkDerivation rec {
+  version = "20160110";
+
+  package-name = "numix-cursor-theme";
+
+  name = "${package-name}-${version}";
+
+  src = fetchFromGitHub {
+    owner = "numixproject";
+    repo = package-name;
+    rev = "e92186d9df47c04d4e0a778eb6941ef58590b179";
+    sha256 = "1sr4pisgrn3632phsiny2fyr2ib6l51fnjdsanmh9ampagl4ly7g";
+  };
+
+  dontBuild = true;
+
+  installPhase = ''
+    install -dm 755 $out/share/icons
+    cp -dr --no-preserve='ownership' Numix{,-Light} $out/share/icons/
+  '';
+
+  meta = with stdenv.lib; {
+    description = "Numix cursor theme";
+    homepage = https://numixproject.org;
+    license = licenses.gpl3;
+    platforms = platforms.all;
+    maintainers = with maintainers; [ offline ];
+  };
+}