Merge pull request #28923 from xtruder/pkgs/numix-cursor-theme/init
numix-cursor-theme: init at 2016011
This commit is contained in:
commit
c5880c08ab
31
pkgs/data/icons/numix-cursor-theme/default.nix
Normal file
31
pkgs/data/icons/numix-cursor-theme/default.nix
Normal file
@ -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 ];
|
||||
};
|
||||
}
|
@ -13170,6 +13170,8 @@ with pkgs;
|
||||
|
||||
numix-icon-theme-square = callPackage ../data/icons/numix-icon-theme-square { };
|
||||
|
||||
numix-cursor-theme = callPackage ../data/icons/numix-cursor-theme { };
|
||||
|
||||
oldstandard = callPackage ../data/fonts/oldstandard { };
|
||||
|
||||
oldsindhi = callPackage ../data/fonts/oldsindhi { };
|
||||
|
Loading…
Reference in New Issue
Block a user