From 2b134fd3886ca24297355bf25e021025800250bf Mon Sep 17 00:00:00 2001 From: The Admin Date: Wed, 26 Apr 2017 00:58:43 +0200 Subject: numix-cursor-theme: init at 2016011 --- pkgs/data/icons/numix-cursor-theme/default.nix | 31 ++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 pkgs/data/icons/numix-cursor-theme/default.nix (limited to 'pkgs/data/icons') 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 000000000000..883276b00a8c --- /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 ]; + }; +} -- cgit 1.4.1