nixpkgs/pkgs/development/interpreters/guile/default.nix
Ludovic Courtès 9433120f1f Guile: Disable `doCheck' for now.
svn path=/nixpkgs/trunk/; revision=11107
2008-03-13 21:04:07 +00:00

35 lines
998 B
Nix

{ fetchurl, stdenv, libtool, readline, gmp
, gawk, makeWrapper }:
stdenv.mkDerivation rec {
name = "guile-1.8.4";
src = fetchurl {
url = "ftp://ftp.gnu.org/gnu/guile/" + name + ".tar.gz";
sha256 = "1cz1d4n6vzw0lfsvplsiarwqk675f12j596dzfv0h5r9cljpc0ya";
};
patches = [ ./test-tmpdir.patch ];
buildInputs = [ makeWrapper ];
propagatedBuildInputs = [readline libtool gmp gawk];
postInstall = ''
wrapProgram $out/bin/guile-snarf --prefix PATH : "${gawk}/bin"
'';
# FIXME: It seems that we hit a deadlock sometimes when running the
# test suite, typically somewhere between `time.test' and
# `unit.test'. To be continued...
doCheck = false;
setupHook = ./setup-hook.sh;
meta = {
description = ''GNU Guile is an interpreter for the Scheme
programming language, packaged as a library that
can be embedded into programs to make them extensible.'';
homepage = http://www.gnu.org/software/guile/;
license = "LGPL";
};
}