summary refs log tree commit diff
path: root/pkgs/development/libraries/libsigcxx/default.nix
blob: ba24763ea187981d48816e5a9915ed40a6bab395 (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://ftp.gnome.org/pub/GNOME/sources/libsigc++/2.0/libsigc++-2.0.16.tar.gz;
    md5 = "49b8c091b1be84d9f9801c4c81cd98b8";
  };

  buildInputs = [pkgconfig];
}