nixpkgs/pkgs/development/libraries/aterm/aterm-2.4.nix
Eelco Dolstra ac41a46f6e * ATerm aliasing patch (from
http://bugzilla.sen.cwi.nl:8080/show_bug.cgi?id=470).

svn path=/nixpkgs/trunk/; revision=5486
2006-06-22 09:02:54 +00:00

16 lines
428 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "aterm-2.4.2";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/aterm-2.4.2.tar.gz;
md5 = "18617081dd112d85e6c4b1b552628114";
};
patches = [./aterm-alias-fix-2.patch];
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";
};
}