nixpkgs/pkgs/development/libraries/libsigcxx/1.2.nix

18 lines
433 B
Nix
Raw Normal View History

{stdenv, fetchurl, pkgconfig, m4}:
stdenv.mkDerivation rec {
name = "libsigc++-1.2.7";
src = fetchurl {
url = "http://ftp.gnome.org/pub/GNOME/sources/libsigc++/1.2/${name}.tar.bz2";
sha256 = "099224v5y0y1ggqrfc8vga8afr3nb93iicn7cj8xxgsrwa83s5nr";
};
buildInputs = [pkgconfig m4];
meta = {
homepage = http://libsigc.sourceforge.net/;
description = "A typesafe callback system for standard C++";
};
}