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

stdenv.mkDerivation {
  name = "aterm-2.3.1";
  configureFlags = "--with-gcc";

  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/aterm-2.3.1.tar.gz;
    md5 = "5a2d70acc45a9d301e0dba12fcaf77e7";
  };

  patches = [ ./aterm-alias-fix.patch ];
}