depot/third_party/nixpkgs/pkgs/development/libraries/libsigcxx/1.2.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

21 lines
563 B
Nix

{stdenv, fetchurl, pkgconfig, m4}:
stdenv.mkDerivation rec {
name = "libsigc++-1.2.7";
src = fetchurl {
url = "mirror://gnome/sources/libsigc++/1.2/${name}.tar.bz2";
sha256 = "099224v5y0y1ggqrfc8vga8afr3nb93iicn7cj8xxgsrwa83s5nr";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ m4];
meta = with stdenv.lib; {
homepage = "https://libsigcplusplus.github.io/libsigcplusplus/";
description = "A typesafe callback system for standard C++";
branch = "1.2";
platforms = platforms.unix;
license = licenses.lgpl3;
};
}