Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
64 lines
1.4 KiB
Nix
64 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 = "48.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/adwaita-icon-theme/${lib.versions.major version}/adwaita-icon-theme-${version}.tar.xz";
|
|
hash = "sha256-hHBoiIZQ2WcxFb5tvyv9wxpGrrxSimqdtEIOYOZWuNQ=";
|
|
};
|
|
|
|
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 = {
|
|
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 lib.platforms; linux ++ darwin;
|
|
teams = [ lib.teams.gnome ];
|
|
license = lib.licenses.cc-by-sa-30;
|
|
};
|
|
}
|