tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
numix-solarized-gtk-theme: 20210522 -> 20210831
José Romildo
4 years ago
2b5d87d8
b3051850
+4
-3
1 changed file
expand all
collapse all
unified
split
pkgs
data
themes
numix-solarized
default.nix
+4
-3
pkgs/data/themes/numix-solarized/default.nix
···
2
2
3
3
stdenv.mkDerivation rec {
4
4
pname = "numix-solarized-gtk-theme";
5
5
-
version = "20210522";
5
5
+
version = "20210831";
6
6
7
7
src = fetchFromGitHub {
8
8
owner = "Ferdi265";
9
9
repo = pname;
10
10
rev = version;
11
11
-
sha256 = "0hin73fmfir4w1z0j87k5hahhf2blhcq4r7gf89gz4slnl18cvjh";
11
11
+
sha256 = "1q8qhpw0hfv625sm626zp4vbz2106b0g5m11ygk87s6kbxrfg6lr";
12
12
};
13
13
14
14
nativeBuildInputs = [ python3 sassc glib gdk-pixbuf inkscape ];
···
24
24
25
25
installPhase = ''
26
26
runHook preInstall
27
27
-
for theme in *.colors; do
27
27
+
for theme in colors/*.colors; do
28
28
+
theme="''${theme##*/}"
28
29
make THEME="''${theme/.colors/}" install
29
30
done
30
31
runHook postInstall