nixpkgs/pkgs/development/libraries/libsigcxx/1.2.nix
Lluís Batlle i Rossell 2377a46c8f Adding the game Advanced Strategic Command.
I had to add an old version of libsigc++ for it.

svn path=/nixpkgs/trunk/; revision=23490
2010-08-29 09:43:46 +00:00

18 lines
433 B
Nix

{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++";
};
}