tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
arc-icon-theme: build GTK icon cache
Yegor Timoshenko
8 years ago
ed7259b7
e7fb9578
+4
-4
1 changed file
expand all
collapse all
unified
split
pkgs
data
icons
arc-icon-theme
default.nix
+4
-4
pkgs/data/icons/arc-icon-theme/default.nix
···
1
-
{ stdenv, fetchFromGitHub, autoreconfHook, moka-icon-theme }:
2
3
stdenv.mkDerivation rec {
4
name = "${package-name}-${version}";
···
12
sha256 = "1ch3hp08qri93510hypzz6m2x4xgg2h15wvnhjwh1x1s1b7jvxjd";
13
};
14
15
-
nativeBuildInputs = [ autoreconfHook ];
16
17
-
buildInputs = [ moka-icon-theme ];
18
19
meta = with stdenv.lib; {
20
description = "Arc icon theme";
21
homepage = https://github.com/horst3180/arc-icon-theme;
22
-
license = with licenses; [ gpl3 ];
23
platforms = platforms.all;
24
maintainers = with maintainers; [ romildo ];
25
};
···
1
+
{ stdenv, fetchFromGitHub, autoreconfHook, gtk3, moka-icon-theme }:
2
3
stdenv.mkDerivation rec {
4
name = "${package-name}-${version}";
···
12
sha256 = "1ch3hp08qri93510hypzz6m2x4xgg2h15wvnhjwh1x1s1b7jvxjd";
13
};
14
15
+
nativeBuildInputs = [ autoreconfHook gtk3 moka-icon-theme ];
16
17
+
postFixup = "gtk-update-icon-cache $out/share/icons/Arc";
18
19
meta = with stdenv.lib; {
20
description = "Arc icon theme";
21
homepage = https://github.com/horst3180/arc-icon-theme;
22
+
license = licenses.gpl3;
23
platforms = platforms.all;
24
maintainers = with maintainers; [ romildo ];
25
};