nixpkgs/pkgs/data/icons/numix-cursor-theme/default.nix

32 lines
755 B
Nix
Raw Normal View History

2017-04-25 22:58:43 +00:00
{ 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";
2018-09-01 23:04:26 +00:00
homepage = https://numixproject.github.io;
2017-04-25 22:58:43 +00:00
license = licenses.gpl3;
platforms = platforms.all;
maintainers = with maintainers; [ offline ];
};
}