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