summary refs log tree commit diff
path: root/pkgs/data
diff options
context:
space:
mode:
authorThe Admin <jakahudoklin@gmail.com>2017-04-26 00:58:43 +0200
committerJaka Hudoklin <jakahudoklin@gmail.com>2017-09-03 12:34:08 +0200
commit2b134fd3886ca24297355bf25e021025800250bf (patch)
tree0e86d4ccf81851b44143dc0b1eac04d74d0b57e8 /pkgs/data
parent101ccc0629790b8a404904f72e2fbf824de7c169 (diff)
downloadnixpkgs-2b134fd3886ca24297355bf25e021025800250bf.tar
nixpkgs-2b134fd3886ca24297355bf25e021025800250bf.tar.gz
nixpkgs-2b134fd3886ca24297355bf25e021025800250bf.tar.bz2
nixpkgs-2b134fd3886ca24297355bf25e021025800250bf.tar.lz
nixpkgs-2b134fd3886ca24297355bf25e021025800250bf.tar.xz
nixpkgs-2b134fd3886ca24297355bf25e021025800250bf.tar.zst
nixpkgs-2b134fd3886ca24297355bf25e021025800250bf.zip
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 00000000000..883276b00a8
--- /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 ];
+  };
+}