63 lines
1.4 KiB
Nix
63 lines
1.4 KiB
Nix
|
{ lib
|
||
|
, stdenv
|
||
|
, fetchurl
|
||
|
, meson
|
||
|
, ninja
|
||
|
, pkg-config
|
||
|
, gnome
|
||
|
, gtk3
|
||
|
, gdk-pixbuf
|
||
|
, librsvg
|
||
|
, hicolor-icon-theme
|
||
|
}:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "adwaita-icon-theme";
|
||
|
version = "47.0";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "mirror://gnome/sources/adwaita-icon-theme/${lib.versions.major version}/adwaita-icon-theme-${version}.tar.xz";
|
||
|
hash = "sha256-rQiKIpWMuEaeQdnxu6Dvsn5YaiECITzYnMJtsuACvf4=";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
meson
|
||
|
ninja
|
||
|
pkg-config
|
||
|
gtk3
|
||
|
];
|
||
|
|
||
|
buildInputs = [
|
||
|
gdk-pixbuf
|
||
|
librsvg
|
||
|
];
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
# For convenience, we can specify adwaita-icon-theme only in packages
|
||
|
hicolor-icon-theme
|
||
|
];
|
||
|
|
||
|
postPatch = ''
|
||
|
# Postpone these changes for now, please discuss in https://github.com/NixOS/nixpkgs/pull/316416
|
||
|
substituteInPlace index.theme \
|
||
|
--replace-fail "Hidden=true" "" \
|
||
|
--replace-fail "Inherits=AdwaitaLegacy,hicolor" "Inherits=hicolor"
|
||
|
'';
|
||
|
|
||
|
dontDropIconThemeCache = true;
|
||
|
|
||
|
passthru = {
|
||
|
updateScript = gnome.updateScript {
|
||
|
packageName = "adwaita-icon-theme";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
meta = with lib; {
|
||
|
homepage = "https://gitlab.gnome.org/GNOME/adwaita-icon-theme";
|
||
|
changelog = "https://gitlab.gnome.org/GNOME/adwaita-icon-theme/-/blob/${version}/NEWS?ref_type=tags";
|
||
|
platforms = with platforms; linux ++ darwin;
|
||
|
maintainers = teams.gnome.members;
|
||
|
license = licenses.cc-by-sa-30;
|
||
|
};
|
||
|
}
|