2024-07-27 06:49:29 +00:00
|
|
|
{ lib, stdenvNoCC, fetchFromGitHub, autoreconfHook, gtk3, adwaita-icon-theme, moka-icon-theme, gnome-icon-theme, hicolor-icon-theme }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-08-12 12:06:08 +00:00
|
|
|
stdenvNoCC.mkDerivation rec {
|
2020-05-03 17:38:23 +00:00
|
|
|
pname = "arc-icon-theme";
|
2024-06-20 14:57:18 +00:00
|
|
|
version = "20161122";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "horst3180";
|
2024-06-20 14:57:18 +00:00
|
|
|
repo = "arc-icon-theme";
|
|
|
|
rev = version;
|
|
|
|
hash = "sha256-TfYtzwo69AC5hHbzEqB4r5Muqvn/eghCGSlmjMCFA7I=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2020-05-03 17:38:23 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
autoreconfHook
|
|
|
|
gtk3
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
2020-05-03 17:38:23 +00:00
|
|
|
moka-icon-theme
|
2024-07-27 06:49:29 +00:00
|
|
|
adwaita-icon-theme
|
2020-05-03 17:38:23 +00:00
|
|
|
gnome-icon-theme
|
2020-04-24 23:36:52 +00:00
|
|
|
hicolor-icon-theme
|
|
|
|
];
|
|
|
|
|
|
|
|
dontDropIconThemeCache = true;
|
|
|
|
|
|
|
|
postFixup = "gtk-update-icon-cache $out/share/icons/Arc";
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Arc icon theme";
|
|
|
|
homepage = "https://github.com/horst3180/arc-icon-theme";
|
|
|
|
license = licenses.gpl3;
|
|
|
|
# moka-icon-theme dependency is restricted to linux
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ romildo ];
|
|
|
|
};
|
|
|
|
}
|