summaryrefslogtreecommitdiffstats
path: root/pkgs/development/compilers/fsharp
diff options
context:
space:
mode:
authorkarsten gebbert <k@ioctl.it>2015-11-08 21:42:56 +0100
committerkarsten gebbert <k@ioctl.it>2015-11-11 10:54:10 +0100
commit5b9de55c26434beae5d4e5f6062b35b46c4c3d95 (patch)
tree35d118cdbc1f05c90169aafc2b21c45820fd4ae8 /pkgs/development/compilers/fsharp
parente07e376563bdb010d89f37af0355732b852ff01e (diff)
fsharp: 3.1.2.5 -> 4.0.0.4
Diffstat (limited to 'pkgs/development/compilers/fsharp')
-rw-r--r--pkgs/development/compilers/fsharp/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/compilers/fsharp/default.nix b/pkgs/development/compilers/fsharp/default.nix
index 11bae06fc749..12df5721cc4c 100644
--- a/pkgs/development/compilers/fsharp/default.nix
+++ b/pkgs/development/compilers/fsharp/default.nix
@@ -4,15 +4,17 @@
stdenv.mkDerivation rec {
name = "fsharp-${version}";
- version = "3.1.2.5";
+ version = "4.0.0.4";
src = fetchurl {
url = "https://github.com/fsharp/fsharp/archive/${version}.tar.gz";
- sha256 = "1j6lnzvhj8fj1csb9am9xcrmmph6v3jyangkq8n1yp3dr6yxqzh1";
+ sha256 = "1m9pwr4xjl3ikaf3pzsa4pb3pr533xa0v34y2cy4pjcc6j0f71av";
};
buildInputs = [ mono pkgconfig dotnetbuildhelpers autoconf automake which ];
+
configurePhase = ''
+ sed -i '988d' src/FSharpSource.targets
substituteInPlace ./autogen.sh --replace "/usr/bin/env sh" "/bin/sh"
./autogen.sh --prefix $out
'';