2005-08-17 16:29:04 +02:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2005-10-11 14:42:48 +02:00
|
|
|
name = "aterm-2.4.2";
|
2005-08-17 16:29:04 +02:00
|
|
|
src = fetchurl {
|
2006-01-30 17:04:03 +01:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/aterm-2.4.2.tar.gz;
|
2005-10-11 14:42:48 +02:00
|
|
|
md5 = "18617081dd112d85e6c4b1b552628114";
|
2005-08-17 16:29:04 +02:00
|
|
|
};
|
2006-03-10 17:12:46 +01: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 16:29:04 +02:00
|
|
|
}
|