tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
ayu-theme-gtk: init @ unstable-2017-05-12
Bernardo Meurer
4 years ago
9dc25578
5c2e32fe
+70
2 changed files
expand all
collapse all
unified
split
pkgs
data
themes
ayu-theme-gtk
default.nix
top-level
all-packages.nix
+68
pkgs/data/themes/ayu-theme-gtk/default.nix
reviewed
···
1
1
+
{ stdenv
2
2
+
, autoreconfHook
3
3
+
, fetchFromGitHub
4
4
+
, gnome
5
5
+
, gtk-engine-murrine
6
6
+
, gtk3
7
7
+
, inkscape
8
8
+
, lib
9
9
+
, optipng
10
10
+
, pkg-config
11
11
+
, sassc
12
12
+
}:
13
13
+
14
14
+
stdenv.mkDerivation rec {
15
15
+
pname = "ayu-theme-gtk";
16
16
+
version = "unstable-2017-05-12";
17
17
+
18
18
+
src = fetchFromGitHub {
19
19
+
owner = "dnordstrom";
20
20
+
repo = "ayu-theme";
21
21
+
rev = "cc6f3d3b72897c304e2f00afcaf51df863155e35";
22
22
+
sha256 = "sha256-1EhTfPhYl+4IootTCCE04y6V7nW1/eWdHarfF7/j1U0=";
23
23
+
};
24
24
+
25
25
+
postPatch = ''
26
26
+
ln -sn 3.20 common/gtk-3.0/3.24
27
27
+
ln -sn 3.18 common/gnome-shell/3.24
28
28
+
'';
29
29
+
30
30
+
nativeBuildInputs = [
31
31
+
autoreconfHook
32
32
+
gtk3
33
33
+
inkscape
34
34
+
optipng
35
35
+
pkg-config
36
36
+
sassc
37
37
+
];
38
38
+
39
39
+
propagatedUserEnvPkgs = [
40
40
+
gnome.gnome-themes-extra
41
41
+
gtk-engine-murrine
42
42
+
];
43
43
+
44
44
+
enableParallelBuilding = true;
45
45
+
46
46
+
preBuild = ''
47
47
+
# Shut up inkscape's warnings about creating profile directory
48
48
+
export HOME="$NIX_BUILD_ROOT"
49
49
+
'';
50
50
+
51
51
+
configureFlags = [
52
52
+
"--with-gnome-shell=${gnome.gnome-shell.version}"
53
53
+
"--disable-unity"
54
54
+
];
55
55
+
56
56
+
postInstall = ''
57
57
+
install -Dm644 -t $out/share/doc/${pname} AUTHORS *.md
58
58
+
'';
59
59
+
60
60
+
meta = with lib; {
61
61
+
description = "Ayu colored GTK and Kvantum themes based on Arc";
62
62
+
homepage = "https://github.com/dnordstrom/ayu-theme/";
63
63
+
license = licenses.gpl3;
64
64
+
platforms = platforms.linux;
65
65
+
maintainers = with maintainers; [ lovesegfault ];
66
66
+
};
67
67
+
}
68
68
+
+2
pkgs/top-level/all-packages.nix
reviewed
···
22764
22764
22765
22765
aurulent-sans = callPackage ../data/fonts/aurulent-sans { };
22766
22766
22767
22767
+
ayu-theme-gtk = callPackage ../data/themes/ayu-theme-gtk { };
22768
22768
+
22767
22769
b612 = callPackage ../data/fonts/b612 { };
22768
22770
22769
22771
babelstone-han = callPackage ../data/fonts/babelstone-han { };