2021-05-08 00:18:14 +03:00
|
|
|
{ lib, stdenv, fetchFromGitHub, pkg-config, gdk-pixbuf, optipng, librsvg, gtk3, pantheon, gnome, gnome-icon-theme, hicolor-icon-theme }:
|
2017-12-17 00:17:55 +03:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 15:41:18 +03:00
|
|
|
pname = "elementary-xfce-icon-theme";
|
2021-01-18 18:27:30 +03:00
|
|
|
version = "0.15.2";
|
2017-12-17 00:17:55 +03:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "shimmerproject";
|
|
|
|
repo = "elementary-xfce";
|
2018-09-18 01:31:29 +03:00
|
|
|
rev = "v${version}";
|
2021-01-18 18:27:30 +03:00
|
|
|
sha256 = "sha256-E8f6UU/4Y9Nfk7LjDcdyV+TdeVj/zl3oFCyEu3Gz27w=";
|
2017-12-17 00:17:55 +03:00
|
|
|
};
|
|
|
|
|
2020-04-17 22:59:07 +03:00
|
|
|
nativeBuildInputs = [
|
2021-01-17 05:14:13 +03:00
|
|
|
pkg-config
|
2020-04-17 22:59:07 +03:00
|
|
|
gdk-pixbuf
|
|
|
|
librsvg
|
|
|
|
optipng
|
|
|
|
gtk3
|
|
|
|
];
|
2019-09-12 17:47:48 +03:00
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
2020-04-17 22:59:07 +03:00
|
|
|
pantheon.elementary-icon-theme
|
2021-05-08 00:18:14 +03:00
|
|
|
gnome.adwaita-icon-theme
|
2020-04-17 22:59:07 +03:00
|
|
|
gnome-icon-theme
|
2019-09-12 17:47:48 +03:00
|
|
|
hicolor-icon-theme
|
|
|
|
];
|
|
|
|
|
|
|
|
dontDropIconThemeCache = true;
|
2017-12-17 00:17:55 +03:00
|
|
|
|
2018-09-18 01:31:29 +03:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace svgtopng/Makefile --replace "-O0" "-O"
|
2017-12-17 00:17:55 +03:00
|
|
|
'';
|
|
|
|
|
2018-09-18 01:31:29 +03:00
|
|
|
postInstall = ''
|
|
|
|
make icon-caches
|
2017-12-17 00:17:55 +03:00
|
|
|
'';
|
|
|
|
|
2021-01-11 10:54:33 +03:00
|
|
|
meta = with lib; {
|
2019-09-04 01:49:40 +03:00
|
|
|
description = "Elementary icons for Xfce and other GTK desktops like GNOME";
|
2020-03-23 19:37:03 +03:00
|
|
|
homepage = "https://github.com/shimmerproject/elementary-xfce";
|
2017-12-17 00:17:55 +03:00
|
|
|
license = licenses.gpl2;
|
2018-09-18 02:21:09 +03:00
|
|
|
# darwin cannot deal with file names differing only in case
|
|
|
|
platforms = platforms.linux;
|
2017-12-17 00:17:55 +03:00
|
|
|
maintainers = with maintainers; [ davidak ];
|
|
|
|
};
|
|
|
|
}
|