nixpkgs/pkgs/by-name/ad/adwaita-icon-theme/package.nix
Jan Tojnar 5c5c20919b adwaita-icon-theme: Move from gnome scope to top-level
It is widely used outside gnome – although it probably should not be.
2024-07-01 08:26:46 +02:00

55 lines
1020 B
Nix

{ lib
, stdenv
, fetchurl
, meson
, ninja
, pkg-config
, gnome
, gtk3
, gdk-pixbuf
, librsvg
, hicolor-icon-theme
}:
stdenv.mkDerivation rec {
pname = "adwaita-icon-theme";
version = "46.0";
src = fetchurl {
url = "mirror://gnome/sources/adwaita-icon-theme/${lib.versions.major version}/${pname}-${version}.tar.xz";
hash = "sha256-S8tTm9ddZNo4XW+gjLqp3erOtqyOgrhbpsQRF79bpk4=";
};
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
];
dontDropIconThemeCache = true;
passthru = {
updateScript = gnome.updateScript {
packageName = "adwaita-icon-theme";
};
};
meta = with lib; {
homepage = "https://gitlab.gnome.org/GNOME/adwaita-icon-theme";
platforms = with platforms; linux ++ darwin;
maintainers = teams.gnome.members;
license = licenses.cc-by-sa-30;
};
}