summary refs log tree commit diff
path: root/pkgs/development/libraries/aterm/default.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2004-03-28 21:17:56 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2004-03-28 21:17:56 +0000
commit5862e56f260424a626226293abfeda771e5067a9 (patch)
treeed4771cb84e580794f05cd684e6ec684b2218c60 /pkgs/development/libraries/aterm/default.nix
parent892b119c9d2c4e1bcf28a1adf24f7bd00b4a6626 (diff)
* 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
Diffstat (limited to 'pkgs/development/libraries/aterm/default.nix')
-rw-r--r--pkgs/development/libraries/aterm/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/aterm/default.nix b/pkgs/development/libraries/aterm/default.nix
index bac496ecebcab..b096dd4af20d2 100644
--- a/pkgs/development/libraries/aterm/default.nix
+++ b/pkgs/development/libraries/aterm/default.nix
@@ -2,7 +2,7 @@
 
 stdenv.mkDerivation {
   name = "aterm-2.0.5";
-  builder = ./builder.sh;
+  configureFlags = "--with-gcc";
   src = fetchurl {
     url = http://www.cwi.nl/projects/MetaEnv/aterm/aterm-2.0.5.tar.gz;
     md5 = "68aefb0c10b2ab876b8d3c0b2d0cdb1b";