summary refs log tree commit diff
path: root/pkgs/development/libraries/libsigcxx/1.2.nix
blob: 38e5ffcb4de042e39ef0c4b51020be781f9e4e40 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{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 = {
    homepage = https://libsigcplusplus.github.io/libsigcplusplus/;
    description = "A typesafe callback system for standard C++";
    branch = "1.2";
    platforms = stdenv.lib.platforms.unix;
  };
}