nixpkgs/pkgs/development/libraries/aterm/2.4.2-fixes.nix
Eelco Dolstra db0e9e16c9 * Use a patched ATerm library that fixes another GC bug.
svn path=/nixpkgs/trunk/; revision=9065
2007-08-07 23:27:38 +00:00

15 lines
437 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "aterm-2.4.2-fixes-r2";
src = fetchurl {
url = http://losser.st-lab.cs.uu.nl/~eelco/dist/aterm-2.4.2-fixes-r2.tar.bz2;
sha256 = "1w3bxdpc2hz29li5ssmdcz3x0fn47r7g62ns0v8nazxwf40vff4j";
};
meta = {
homepage = http://www.cwi.nl/htbin/sen1/twiki/bin/view/SEN1/ATerm;
license = "LGPL";
description = "Library for manipulation of term data structures in C";
};
}