nixpkgs/pkgs/development/libraries/aterm/default.nix
Eelco Dolstra fe6f8b45e6 * A fix to get the higher optimisation levels (-O2, -O3) to work again
for the ATerm library.  I'm adding it to Nixpkgs so we can get some
  testing ;-)

svn path=/nixpkgs/trunk/; revision=2979
2005-05-02 16:57:13 +00:00

14 lines
290 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "aterm-2.3.1";
configureFlags = "--with-gcc";
src = fetchurl {
url = http://catamaran.labs.cs.uu.nl/dist/tarballs/aterm-2.3.1.tar.gz;
md5 = "5a2d70acc45a9d301e0dba12fcaf77e7";
};
patches = [ ./aterm-alias-fix.patch ];
}