about summary refs log tree commit diff
path: root/pkgs/development/libraries/aterm/aterm-2.1.nix
blob: 0cce9850e187418bc40cad6626d860ed9a79560c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{stdenv, fetchurl}: derivation {
  name = "aterm-2.1";
  system = stdenv.system;
  builder = ./builder.sh;
  src = fetchurl {
    url = http://www.cwi.nl/projects/MetaEnv/aterm/aterm-2.1.tar.gz;
    md5 = "b9d541da35b6d287af1cd8460963a7a8";
  };
  stdenv = stdenv;
}