2008-08-29 13:48:44 +02:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2009-01-27 18:46:07 +01:00
|
|
|
name = "aterm-2.8";
|
2008-08-29 13:48:44 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2009-01-27 18:46:07 +01:00
|
|
|
url = http://www.meta-environment.org/releases/aterm-2.8.tar.gz;
|
|
|
|
sha256 = "1vq4qpmcww3n9v7bklgp7z1yqi9gmk6hcahqjqdzc5ksa089rdms";
|
2008-08-29 13:48:44 +02:00
|
|
|
};
|
|
|
|
|
2009-01-27 18:46:07 +01:00
|
|
|
patches = [
|
|
|
|
# Fix for http://bugzilla.sen.cwi.nl:8080/show_bug.cgi?id=841
|
|
|
|
./max-long.patch
|
|
|
|
];
|
|
|
|
|
2008-09-02 15:51:32 +02:00
|
|
|
doCheck = true;
|
2008-08-29 13:48:44 +02: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";
|
|
|
|
};
|
|
|
|
}
|