nixpkgs/pkgs/development/libraries/aterm/default.nix
Eelco Dolstra 5862e56f26 * For simple Autotools-style packages (such as the ATerm library), the
builder may now be omitted entirely; the function `mkDerivation'
  will then use a default build script.

svn path=/nixpkgs/trunk/; revision=868
2004-03-28 21:17:56 +00:00

11 lines
243 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "aterm-2.0.5";
configureFlags = "--with-gcc";
src = fetchurl {
url = http://www.cwi.nl/projects/MetaEnv/aterm/aterm-2.0.5.tar.gz;
md5 = "68aefb0c10b2ab876b8d3c0b2d0cdb1b";
};
}