tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
vimix-cursor-theme: init at 2020-02-24
Gabe Dunn
2 years ago
13e6a040
89d92033
+35
2 changed files
expand all
collapse all
unified
split
pkgs
data
icons
vimix-cursor-theme
default.nix
top-level
all-packages.nix
+33
pkgs/data/icons/vimix-cursor-theme/default.nix
···
1
1
+
{ stdenvNoCC
2
2
+
, fetchFromGitHub
3
3
+
, lib
4
4
+
}:
5
5
+
6
6
+
stdenvNoCC.mkDerivation rec {
7
7
+
pname = "vimix-cursor-theme";
8
8
+
version = "2020-02-24";
9
9
+
10
10
+
src = fetchFromGitHub {
11
11
+
owner = "vinceliuice";
12
12
+
repo = "Vimix-cursors";
13
13
+
rev = version;
14
14
+
hash = "sha256-TfcDer85+UOtDMJVZJQr81dDy4ekjYgEvH1RE1IHMi4=";
15
15
+
};
16
16
+
17
17
+
installPhase = ''
18
18
+
sed -i 's/Vimix Cursors$/Vimix-Cursors/g' dist{,-white}/index.theme
19
19
+
20
20
+
install -dm 755 $out/share/icons/Vimix-Cursors{,-White}
21
21
+
22
22
+
cp -dr --no-preserve='ownership' dist/* $out/share/icons/Vimix-Cursors
23
23
+
cp -dr --no-preserve='ownership' dist-white/* $out/share/icons/Vimix-Cursors-White
24
24
+
'';
25
25
+
26
26
+
meta = with lib; {
27
27
+
description = "An x-cursor theme inspired by Materia design and based on capitaine-cursors";
28
28
+
homepage = "https://github.com/vinceliuice/Vimix-cursors";
29
29
+
license = licenses.gpl3Only;
30
30
+
platforms = platforms.all;
31
31
+
maintainers = with maintainers; [ redxtech ];
32
32
+
};
33
33
+
}
+2
pkgs/top-level/all-packages.nix
···
30406
30406
30407
30407
victor-mono = callPackage ../data/fonts/victor-mono { };
30408
30408
30409
30409
+
vimix-cursor-theme = callPackage ../data/icons/vimix-cursor-theme { };
30410
30410
+
30409
30411
vimix-gtk-themes = callPackage ../data/themes/vimix {
30410
30412
inherit (gnome) gnome-shell;
30411
30413
};