From c038133721c59d206283999513cfb892fcec1412 Mon Sep 17 00:00:00 2001 From: Austin Seipp Date: Sat, 29 Mar 2014 19:55:07 -0500 Subject: [PATCH] fsharp: fix missing --replace argument This should fix the Hydra build. Signed-off-by: Austin Seipp --- pkgs/development/compilers/fsharp/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/compilers/fsharp/default.nix b/pkgs/development/compilers/fsharp/default.nix index 8cc283bc3f1..963c7e2cb5c 100644 --- a/pkgs/development/compilers/fsharp/default.nix +++ b/pkgs/development/compilers/fsharp/default.nix @@ -12,7 +12,7 @@ stdenv.mkDerivation rec { buildInputs = [ mono pkgconfig autoconf automake which ]; configurePhase = '' - substituteInPlace ./autogen.sh "/usr/bin/env sh" "/bin/sh" + substituteInPlace ./autogen.sh --replace "/usr/bin/env sh" "/bin/sh" ./autogen.sh --prefix $out '';