summary refs log tree commit diff
path: root/pkgs/development/libraries/aterm/2.4.2-fixes.nix
blob: 5c1106577d7bbeeb7929ebd9b178af3953bce6e9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{stdenv, fetchurl}:

stdenv.mkDerivation {
  name = "aterm-2.4.2-fixes";
  src = fetchurl {
    url = http://losser.st-lab.cs.uu.nl/~eelco/dist/aterm-2.4.2-fixes.tar.bz2;
    md5 = "9ad8ed141d3e66a7689817789431c0cd";
  };
  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";
  };
}