blob: 9da7482f0845702aec86a647c9bde7be0768e440 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
{
lib,
stdenvNoCC,
fetchFromGitHub,
inkscape,
xcursorgen,
}:
stdenvNoCC.mkDerivation rec {
pname = "numix-cursor-theme";
version = "1.2";
src = fetchFromGitHub {
owner = "numixproject";
repo = "numix-cursor-theme";
rev = "v${version}";
sha256 = "1q3w5i0h3ly6i7s9pqjdrb14kp89i78s0havri7lhiqyxizjvcvh";
};
nativeBuildInputs = [
inkscape
xcursorgen
];
buildPhase = ''
patchShebangs .
HOME=$TMP ./build.sh
'';
installPhase = ''
install -dm 755 $out/share/icons
cp -dr --no-preserve='ownership' Numix-Cursor{,-Light} $out/share/icons/
'';
meta = {
description = "Numix cursor theme";
homepage = "https://numixproject.github.io";
license = lib.licenses.gpl3;
platforms = lib.platforms.all;
maintainers = [ ];
};
}
|