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
···
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
···
1
+
{ stdenvNoCC
2
+
, fetchFromGitHub
3
+
, lib
4
+
}:
5
+
6
+
stdenvNoCC.mkDerivation rec {
7
+
pname = "vimix-cursor-theme";
8
+
version = "2020-02-24";
9
+
10
+
src = fetchFromGitHub {
11
+
owner = "vinceliuice";
12
+
repo = "Vimix-cursors";
13
+
rev = version;
14
+
hash = "sha256-TfcDer85+UOtDMJVZJQr81dDy4ekjYgEvH1RE1IHMi4=";
15
+
};
16
+
17
+
installPhase = ''
18
+
sed -i 's/Vimix Cursors$/Vimix-Cursors/g' dist{,-white}/index.theme
19
+
20
+
install -dm 755 $out/share/icons/Vimix-Cursors{,-White}
21
+
22
+
cp -dr --no-preserve='ownership' dist/* $out/share/icons/Vimix-Cursors
23
+
cp -dr --no-preserve='ownership' dist-white/* $out/share/icons/Vimix-Cursors-White
24
+
'';
25
+
26
+
meta = with lib; {
27
+
description = "An x-cursor theme inspired by Materia design and based on capitaine-cursors";
28
+
homepage = "https://github.com/vinceliuice/Vimix-cursors";
29
+
license = licenses.gpl3Only;
30
+
platforms = platforms.all;
31
+
maintainers = with maintainers; [ redxtech ];
32
+
};
33
+
}
+2
pkgs/top-level/all-packages.nix
···
30406
30407
victor-mono = callPackage ../data/fonts/victor-mono { };
30408
0
0
30409
vimix-gtk-themes = callPackage ../data/themes/vimix {
30410
inherit (gnome) gnome-shell;
30411
};
···
30406
30407
victor-mono = callPackage ../data/fonts/victor-mono { };
30408
30409
+
vimix-cursor-theme = callPackage ../data/icons/vimix-cursor-theme { };
30410
+
30411
vimix-gtk-themes = callPackage ../data/themes/vimix {
30412
inherit (gnome) gnome-shell;
30413
};