2021-05-07 22:18:14 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook, gtk3, gnome, moka-icon-theme, gnome-icon-theme, hicolor-icon-theme }:
|
2016-06-10 14:25:57 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-04-17 20:21:11 +01:00
|
|
|
pname = "arc-icon-theme";
|
2016-12-07 19:10:45 +00:00
|
|
|
version = "2016-11-22";
|
2016-06-10 14:25:57 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "horst3180";
|
2020-04-17 20:21:11 +01:00
|
|
|
repo = pname;
|
2016-12-07 19:10:45 +00:00
|
|
|
rev = "55a575386a412544c3ed2b5617a61f842ee4ec15";
|
|
|
|
sha256 = "1ch3hp08qri93510hypzz6m2x4xgg2h15wvnhjwh1x1s1b7jvxjd";
|
2016-06-10 14:25:57 +01:00
|
|
|
};
|
|
|
|
|
2020-04-17 20:21:11 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
autoreconfHook
|
|
|
|
gtk3
|
|
|
|
];
|
2016-06-10 14:25:57 +01:00
|
|
|
|
2019-09-12 15:47:48 +01:00
|
|
|
propagatedBuildInputs = [
|
2020-04-17 20:21:11 +01:00
|
|
|
moka-icon-theme
|
2021-05-07 22:18:14 +01:00
|
|
|
gnome.adwaita-icon-theme
|
2020-04-17 20:21:11 +01:00
|
|
|
gnome-icon-theme
|
2019-09-12 15:47:48 +01:00
|
|
|
hicolor-icon-theme
|
|
|
|
];
|
|
|
|
|
|
|
|
dontDropIconThemeCache = true;
|
|
|
|
|
2018-02-24 11:10:07 +00:00
|
|
|
postFixup = "gtk-update-icon-cache $out/share/icons/Arc";
|
2016-06-10 14:25:57 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-06-10 14:25:57 +01:00
|
|
|
description = "Arc icon theme";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/horst3180/arc-icon-theme";
|
2018-02-24 11:10:07 +00:00
|
|
|
license = licenses.gpl3;
|
2018-07-02 21:32:30 +01:00
|
|
|
# moka-icon-theme dependency is restricted to linux
|
|
|
|
platforms = platforms.linux;
|
2016-06-10 14:25:57 +01:00
|
|
|
maintainers = with maintainers; [ romildo ];
|
|
|
|
};
|
|
|
|
}
|