mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 02:24:27 +00:00
48 lines
1.1 KiB
Nix
48 lines
1.1 KiB
Nix
{ stdenv, fetchFromGitHub, pkgconfig, gdk-pixbuf, optipng, librsvg, gtk3, pantheon, gnome3, gnome-icon-theme, hicolor-icon-theme }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "elementary-xfce-icon-theme";
|
|
version = "0.15";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "shimmerproject";
|
|
repo = "elementary-xfce";
|
|
rev = "v${version}";
|
|
sha256 = "1f6qvpzxz759znishmr4b22n540y18glv41wmy91r78sa4g6x4sh";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkgconfig
|
|
gdk-pixbuf
|
|
librsvg
|
|
optipng
|
|
gtk3
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
pantheon.elementary-icon-theme
|
|
gnome3.adwaita-icon-theme
|
|
gnome-icon-theme
|
|
hicolor-icon-theme
|
|
];
|
|
|
|
dontDropIconThemeCache = true;
|
|
|
|
postPatch = ''
|
|
substituteInPlace svgtopng/Makefile --replace "-O0" "-O"
|
|
'';
|
|
|
|
postInstall = ''
|
|
make icon-caches
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Elementary icons for Xfce and other GTK desktops like GNOME";
|
|
homepage = "https://github.com/shimmerproject/elementary-xfce";
|
|
license = licenses.gpl2;
|
|
# darwin cannot deal with file names differing only in case
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ davidak ];
|
|
};
|
|
}
|