Fernando Rodrigues 05580f4b44
treewide: switch instances of lib.teams.*.members to the new meta.teams attribute
Follow-up to #394797.

Signed-off-by: Fernando Rodrigues <alpha@sigmasquadron.net>
2025-04-25 22:20:17 -03:00

34 lines
643 B
Nix

{
lib,
stdenv,
fetchurl,
which,
gnome,
autoconf,
automake,
}:
stdenv.mkDerivation rec {
pname = "gnome-common";
version = "3.18.0";
src = fetchurl {
url = "mirror://gnome/sources/gnome-common/${lib.versions.majorMinor version}/gnome-common-${version}.tar.xz";
hash = "sha256-IlaeNwrnVeBFJ7djKL78THO2K/1KVySZ/eEWuDGK+M8=";
};
passthru = {
updateScript = gnome.updateScript { packageName = "gnome-common"; };
};
propagatedBuildInputs = [
which
autoconf
automake
]; # autogen.sh which is using gnome-common tends to require which
meta = with lib; {
teams = [ teams.gnome ];
};
}