adwaita-icon-theme-legacy: init at 46.2 (#337410)

authored by

Masum Reza and committed by
GitHub
0fe41655 3188db0e

+39
+39
pkgs/by-name/ad/adwaita-icon-theme-legacy/package.nix
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchurl, 5 + meson, 6 + ninja, 7 + gtk4, 8 + gnome, 9 + }: 10 + 11 + stdenv.mkDerivation (finalAttrs: { 12 + pname = "adwaita-icon-theme-legacy"; 13 + version = "46.2"; 14 + 15 + src = fetchurl { 16 + url = "mirror://gnome/sources/adwaita-icon-theme-legacy/${lib.versions.major finalAttrs.version}/adwaita-icon-theme-legacy-${finalAttrs.version}.tar.xz"; 17 + hash = "sha256-VISA9YWJpUty0Ygzt1WxX/vVZ+MYcknXTi4fj5nyL7Q="; 18 + }; 19 + 20 + nativeBuildInputs = [ 21 + meson 22 + ninja 23 + gtk4 # for gtk4-update-icon-cache 24 + ]; 25 + 26 + passthru = { 27 + updateScript = gnome.updateScript { 28 + packageName = "adwaita-icon-theme-legacy"; 29 + }; 30 + }; 31 + 32 + meta = with lib; { 33 + description = "Fullcolor icon theme providing fallback for legacy apps"; 34 + homepage = "https://gitlab.gnome.org/GNOME/adwaita-icon-theme-legacy"; 35 + license = licenses.cc-by-sa-30; 36 + maintainers = teams.gnome.members; 37 + platforms = platforms.all; 38 + }; 39 + })