numix-cursor-theme: init at 2016011

+33
+31
pkgs/data/icons/numix-cursor-theme/default.nix
···
··· 1 + { stdenv, fetchFromGitHub }: 2 + 3 + stdenv.mkDerivation rec { 4 + version = "20160110"; 5 + 6 + package-name = "numix-cursor-theme"; 7 + 8 + name = "${package-name}-${version}"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "numixproject"; 12 + repo = package-name; 13 + rev = "e92186d9df47c04d4e0a778eb6941ef58590b179"; 14 + sha256 = "1sr4pisgrn3632phsiny2fyr2ib6l51fnjdsanmh9ampagl4ly7g"; 15 + }; 16 + 17 + dontBuild = true; 18 + 19 + installPhase = '' 20 + install -dm 755 $out/share/icons 21 + cp -dr --no-preserve='ownership' Numix{,-Light} $out/share/icons/ 22 + ''; 23 + 24 + meta = with stdenv.lib; { 25 + description = "Numix cursor theme"; 26 + homepage = https://numixproject.org; 27 + license = licenses.gpl3; 28 + platforms = platforms.all; 29 + maintainers = with maintainers; [ offline ]; 30 + }; 31 + }
+2
pkgs/top-level/all-packages.nix
··· 13143 13144 numix-icon-theme-square = callPackage ../data/icons/numix-icon-theme-square { }; 13145 13146 oldstandard = callPackage ../data/fonts/oldstandard { }; 13147 13148 oldsindhi = callPackage ../data/fonts/oldsindhi { };
··· 13143 13144 numix-icon-theme-square = callPackage ../data/icons/numix-icon-theme-square { }; 13145 13146 + numix-cursor-theme = callPackage ../data/icons/numix-cursor-theme { }; 13147 + 13148 oldstandard = callPackage ../data/fonts/oldstandard { }; 13149 13150 oldsindhi = callPackage ../data/fonts/oldsindhi { };