about summary refs log tree commit diff
path: root/pkgs/development/libraries/libsigcxx/1.2.nix
blob: 09552f86fa7590879c3f78da3c71b152fede6229 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{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 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;
  };
}