summary refs log tree commit diff
path: root/pkgs/development/libraries/libsigcxx/1.2.nix
blob: a417e0bcc1d7c21773ade6c91efbe8100d1d3333 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{lib, stdenv, fetchurl, pkg-config, m4}:

stdenv.mkDerivation rec {
  name = "libsigc++-1.2.7";

  src = fetchurl {
    url = "mirror://gnome/sources/libsigc++/1.2/${name}.tar.bz2";
    sha256 = "099224v5y0y1ggqrfc8vga8afr3nb93iicn7cj8xxgsrwa83s5nr";
  };

  nativeBuildInputs = [ pkg-config ];
  buildInputs = [ m4];

  meta = with lib; {
    homepage = "https://libsigcplusplus.github.io/libsigcplusplus/";
    description = "A typesafe callback system for standard C++";
    branch = "1.2";
    platforms = platforms.unix;
    license = licenses.lgpl3;
  };
}