summary refs log tree commit diff
path: root/pkgs/development/libraries/libsigcxx/default.nix
blob: 1300893ecc40759256b8f76a0f9ab8b5a97ee402 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ stdenv, fetchurl, pkgconfig}:

stdenv.mkDerivation {
  name = "libsigc++-2.0.16";
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/libsigc++-2.0.16.tar.gz;
    md5 = "49b8c091b1be84d9f9801c4c81cd98b8";
  };

  buildInputs = [pkgconfig];
}