From 2377a46c8f265b3ac8739aa8b1ba2822373dc3a4 Mon Sep 17 00:00:00 2001 From: LluĂ­s Batlle i Rossell Date: Sun, 29 Aug 2010 09:43:46 +0000 Subject: Adding the game Advanced Strategic Command. I had to add an old version of libsigc++ for it. svn path=/nixpkgs/trunk/; revision=23490 --- pkgs/development/libraries/libsigcxx/1.2.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 pkgs/development/libraries/libsigcxx/1.2.nix (limited to 'pkgs/development/libraries/libsigcxx/1.2.nix') diff --git a/pkgs/development/libraries/libsigcxx/1.2.nix b/pkgs/development/libraries/libsigcxx/1.2.nix new file mode 100644 index 00000000000..6436a88bdc8 --- /dev/null +++ b/pkgs/development/libraries/libsigcxx/1.2.nix @@ -0,0 +1,17 @@ +{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++"; + }; +} -- cgit 1.4.1