
https://github.com/libsigcplusplus/libsigcplusplus/compare/2.10.8...2.12.1 https://github.com/libsigcplusplus/libsigcplusplus/releases/tag/2.12.1 https://github.com/libsigcplusplus/libsigcplusplus/releases/tag/2.12.0 meson changes look okay. Changelog-reviewed-by: Bobby Rong <rjl931189261@126.com>
32 lines
819 B
Nix
32 lines
819 B
Nix
{ lib, stdenv, fetchurl, pkg-config, meson, ninja, gnome }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libsigc++";
|
|
version = "2.12.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
|
sha256 = "sha256-qdvuMjNR0Qm3ruB0qcuJyj57z4rY7e8YUfTPNZvVCEM=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config meson ninja ];
|
|
|
|
doCheck = true;
|
|
|
|
passthru = {
|
|
updateScript = gnome.updateScript {
|
|
packageName = pname;
|
|
attrPath = "libsigcxx";
|
|
versionPolicy = "odd-unstable";
|
|
freeze = "2.99.1";
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://libsigcplusplus.github.io/libsigcplusplus/";
|
|
description = "A typesafe callback system for standard C++";
|
|
license = licenses.lgpl21Plus;
|
|
platforms = platforms.all;
|
|
};
|
|
}
|