nixpkgs/pkgs/development/libraries/aterm/2.8.nix
Eelco Dolstra debebd8eeb * meta-environment.org seems down.
svn path=/nixpkgs/branches/stdenv-updates/; revision=13970
2009-02-03 10:39:04 +00:00

24 lines
545 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "aterm-2.8";
src = fetchurl {
url = http://homepages.cwi.nl/~daybuild/releases/aterm-2.8.tar.gz;
sha256 = "00diz70cg4mprl4yx8lcibya0fkkskx5azyw03bhbbrnnlz9c53r";
};
patches = [
# Fix for http://bugzilla.sen.cwi.nl:8080/show_bug.cgi?id=841
./max-long.patch
];
doCheck = true;
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";
};
}