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

49 lines
884 B
Nix

{
stdenv,
lib,
fetchurl,
pkg-config,
meson,
ninja,
gnome,
}:
stdenv.mkDerivation rec {
pname = "libsigc++";
version = "3.6.0";
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "w9I7N9/W458uCfCRt3sVQfv6F8Twtr9cibrvcikIDhc=";
};
outputs = [
"out"
"dev"
];
nativeBuildInputs = [
pkg-config
meson
ninja
];
doCheck = true;
passthru = {
updateScript = gnome.updateScript {
packageName = pname;
attrPath = "libsigcxx30";
versionPolicy = "odd-unstable";
};
};
meta = with lib; {
homepage = "https://libsigcplusplus.github.io/libsigcplusplus/";
description = "Typesafe callback system for standard C++";
license = licenses.lgpl21Plus;
teams = [ teams.gnome ];
platforms = platforms.all;
};
}