tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
numix-cursor-theme: init at 2016011
The Admin
8 years ago
2b134fd3
101ccc06
+33
2 changed files
expand all
collapse all
unified
split
pkgs
data
icons
numix-cursor-theme
default.nix
top-level
all-packages.nix
+31
pkgs/data/icons/numix-cursor-theme/default.nix
···
1
1
+
{ stdenv, fetchFromGitHub }:
2
2
+
3
3
+
stdenv.mkDerivation rec {
4
4
+
version = "20160110";
5
5
+
6
6
+
package-name = "numix-cursor-theme";
7
7
+
8
8
+
name = "${package-name}-${version}";
9
9
+
10
10
+
src = fetchFromGitHub {
11
11
+
owner = "numixproject";
12
12
+
repo = package-name;
13
13
+
rev = "e92186d9df47c04d4e0a778eb6941ef58590b179";
14
14
+
sha256 = "1sr4pisgrn3632phsiny2fyr2ib6l51fnjdsanmh9ampagl4ly7g";
15
15
+
};
16
16
+
17
17
+
dontBuild = true;
18
18
+
19
19
+
installPhase = ''
20
20
+
install -dm 755 $out/share/icons
21
21
+
cp -dr --no-preserve='ownership' Numix{,-Light} $out/share/icons/
22
22
+
'';
23
23
+
24
24
+
meta = with stdenv.lib; {
25
25
+
description = "Numix cursor theme";
26
26
+
homepage = https://numixproject.org;
27
27
+
license = licenses.gpl3;
28
28
+
platforms = platforms.all;
29
29
+
maintainers = with maintainers; [ offline ];
30
30
+
};
31
31
+
}
+2
pkgs/top-level/all-packages.nix
···
13143
13143
13144
13144
numix-icon-theme-square = callPackage ../data/icons/numix-icon-theme-square { };
13145
13145
13146
13146
+
numix-cursor-theme = callPackage ../data/icons/numix-cursor-theme { };
13147
13147
+
13146
13148
oldstandard = callPackage ../data/fonts/oldstandard { };
13147
13149
13148
13150
oldsindhi = callPackage ../data/fonts/oldsindhi { };