![Jan Tojnar](/assets/img/avatar_default.png)
https://gitlab.gnome.org/GNOME/adwaita-icon-theme/-/compare/43.beta.1...43 Changelog-Reviewed-By: Jan Tojnar <jtojnar@gmail.com>
53 lines
990 B
Nix
53 lines
990 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, pkg-config
|
|
, autoreconfHook
|
|
, gnome
|
|
, gtk3
|
|
, gdk-pixbuf
|
|
, librsvg
|
|
, hicolor-icon-theme
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "adwaita-icon-theme";
|
|
version = "43";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/adwaita-icon-theme/${lib.versions.major version}/${pname}-${version}.tar.xz";
|
|
sha256 = "LjrHfTKmqlVUFV3zfo8KDdVPxaZf1yHojVBflw2jLsY=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
autoreconfHook
|
|
gtk3
|
|
];
|
|
|
|
buildInputs = [
|
|
gdk-pixbuf
|
|
librsvg
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
# For convenience, we can specify adwaita-icon-theme only in packages
|
|
hicolor-icon-theme
|
|
];
|
|
|
|
dontDropIconThemeCache = true;
|
|
|
|
passthru = {
|
|
updateScript = gnome.updateScript {
|
|
packageName = "adwaita-icon-theme";
|
|
attrPath = "gnome.adwaita-icon-theme";
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
platforms = with platforms; linux ++ darwin;
|
|
maintainers = teams.gnome.members;
|
|
license = licenses.cc-by-sa-30;
|
|
};
|
|
}
|