32 lines
805 B
Nix
32 lines
805 B
Nix
{ stdenv, fetchurl, pkgconfig, intltool, gtk2, xfce }:
|
|
|
|
let
|
|
category = "art";
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "xfce4-icon-theme";
|
|
version = "4.4.3";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://xfce/src/${category}/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.bz2";
|
|
sha256 = "1yk6rx3zr9grm4jwpjvqdkl13pisy7qn1wm5cqzmd2kbsn96cy6l";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ intltool gtk2 ];
|
|
|
|
passthru.updateScript = xfce.updateScript {
|
|
inherit pname version;
|
|
attrPath = "xfce.${pname}";
|
|
versionLister = xfce.archiveLister category pname;
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://www.xfce.org/";
|
|
description = "Icons for Xfce";
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.eelco ];
|
|
};
|
|
}
|