2005-08-17 07:29:04 -07:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2005-10-11 05:42:48 -07:00
|
|
|
name = "aterm-2.4.2";
|
2005-08-17 07:29:04 -07:00
|
|
|
src = fetchurl {
|
2006-01-30 08:04:03 -08:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/aterm-2.4.2.tar.gz;
|
2005-10-11 05:42:48 -07:00
|
|
|
md5 = "18617081dd112d85e6c4b1b552628114";
|
2005-08-17 07:29:04 -07:00
|
|
|
};
|
2006-08-17 08:33:49 -07:00
|
|
|
patches =
|
|
|
|
[./aterm-alias-fix-2.patch] ++
|
|
|
|
(if stdenv.system == "i686-mingw" then [./mingw-asm.patch] else []);
|
2006-03-10 08:12:46 -08:00
|
|
|
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";
|
|
|
|
};
|
2005-08-17 07:29:04 -07:00
|
|
|
}
|