560f307623
- 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
10 lines
219 B
Nix
10 lines
219 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "boehm-gc-6.5";
|
|
src = fetchurl {
|
|
url = http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/gc6.5.tar.gz;
|
|
md5 = "00bf95cdcbedfa7321d14e0133b31cdb";
|
|
};
|
|
}
|