43 lines
849 B
Nix
43 lines
849 B
Nix
|
{ stdenv
|
||
|
, lib
|
||
|
, fetchurl
|
||
|
, pkg-config
|
||
|
, meson
|
||
|
, ninja
|
||
|
, gnome3
|
||
|
}:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "libsigc++";
|
||
|
version = "3.0.6";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
||
|
sha256 = "tw7c9GEWUcVKQm4QmxcZbh+hfaCQWSpQAOLRNMA6xc4=";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
pkg-config
|
||
|
meson
|
||
|
ninja
|
||
|
];
|
||
|
|
||
|
doCheck = true;
|
||
|
|
||
|
passthru = {
|
||
|
updateScript = gnome3.updateScript {
|
||
|
packageName = pname;
|
||
|
attrPath = "libsigcxx30";
|
||
|
versionPolicy = "odd-unstable";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
meta = with lib; {
|
||
|
homepage = "https://libsigcplusplus.github.io/libsigcplusplus/";
|
||
|
description = "A typesafe callback system for standard C++";
|
||
|
license = licenses.lgpl21Plus;
|
||
|
maintainers = teams.gnome.members;
|
||
|
platforms = platforms.all;
|
||
|
};
|
||
|
}
|