nixpkgs/pkgs/development/libraries/libsigcxx/3.0.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
875 B
Nix
Raw Permalink Normal View History

2021-05-06 15:21:00 +00:00
{ stdenv
, lib
, fetchurl
, pkg-config
, meson
, ninja
, gnome
2021-05-06 15:21:00 +00:00
}:
stdenv.mkDerivation rec {
pname = "libsigc++";
version = "3.6.0";
2021-05-06 15:21:00 +00:00
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "w9I7N9/W458uCfCRt3sVQfv6F8Twtr9cibrvcikIDhc=";
2021-05-06 15:21:00 +00:00
};
outputs = [ "out" "dev" ];
2021-05-06 15:21:00 +00:00
nativeBuildInputs = [
pkg-config
meson
ninja
];
doCheck = true;
passthru = {
updateScript = gnome.updateScript {
2021-05-06 15:21:00 +00:00
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;
maintainers = teams.gnome.members;
platforms = platforms.all;
};
}