Added libraries:

- gtkmm: C++ bindings for gtk
  - glibmm: C++ bindings for glib
  - libsigc++ (C++)

Added applications:
  - Batik: SVG rasterizer (and more)
  - Inkscape: vector graphics drawing application

Upgraded:
  - boehm-gc


svn path=/nixpkgs/trunk/; revision=3792
This commit is contained in:
Martin Bravenboer
2005-09-07 14:57:30 +00:00
parent a7eba5ec59
commit 560f307623
9 changed files with 117 additions and 3 deletions
@@ -0,0 +1,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];
}