2015-05-22 14:25:02 +01:00
|
|
|
# Temporaririly avoid dependency on dotnetbuildhelpers to avoid rebuilding many times while working on it
|
|
|
|
|
|
|
|
{ stdenv, fetchurl, mono, pkgconfig, dotnetbuildhelpers, autoconf, automake, which }:
|
2014-03-08 15:00:57 +00:00
|
|
|
|
2012-04-12 12:39:40 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2014-03-08 15:00:57 +00:00
|
|
|
name = "fsharp-${version}";
|
2016-03-30 20:45:49 +01:00
|
|
|
version = "4.0.1.1";
|
2012-04-12 12:39:40 +01:00
|
|
|
|
2014-08-20 08:03:18 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/fsharp/fsharp/archive/${version}.tar.gz";
|
2016-03-30 20:45:49 +01:00
|
|
|
sha256 = "0mvmvwwpl4zq0yvgzdizww8l9azvlrc82xm32nz1fi1nw8x5qfqk";
|
2012-04-12 12:39:40 +01:00
|
|
|
};
|
|
|
|
|
2015-05-22 14:25:02 +01:00
|
|
|
buildInputs = [ mono pkgconfig dotnetbuildhelpers autoconf automake which ];
|
2015-11-08 20:42:56 +00:00
|
|
|
|
2014-03-21 09:08:59 +00:00
|
|
|
configurePhase = ''
|
2015-11-08 20:42:56 +00:00
|
|
|
sed -i '988d' src/FSharpSource.targets
|
2014-03-30 00:55:07 +00:00
|
|
|
substituteInPlace ./autogen.sh --replace "/usr/bin/env sh" "/bin/sh"
|
2014-03-21 09:08:59 +00:00
|
|
|
./autogen.sh --prefix $out
|
|
|
|
'';
|
2012-04-12 12:39:40 +01:00
|
|
|
|
2014-03-08 21:45:52 +00:00
|
|
|
# Make sure the executables use the right mono binary,
|
|
|
|
# and set up some symlinks for backwards compatibility.
|
|
|
|
postInstall = ''
|
|
|
|
substituteInPlace $out/bin/fsharpc --replace " mono " " ${mono}/bin/mono "
|
|
|
|
substituteInPlace $out/bin/fsharpi --replace " mono " " ${mono}/bin/mono "
|
|
|
|
substituteInPlace $out/bin/fsharpiAnyCpu --replace " mono " " ${mono}/bin/mono "
|
|
|
|
ln -s $out/bin/fsharpc $out/bin/fsc
|
|
|
|
ln -s $out/bin/fsharpi $out/bin/fsi
|
2015-05-22 14:25:02 +01:00
|
|
|
for dll in "$out/lib/mono/4.5"/FSharp*.dll
|
|
|
|
do
|
|
|
|
create-pkg-config-for-dll.sh "$out/lib/pkgconfig" "$dll"
|
|
|
|
done
|
2014-03-08 21:45:52 +00:00
|
|
|
'';
|
|
|
|
|
2012-04-12 12:39:40 +01:00
|
|
|
# To fix this error when running:
|
|
|
|
# The file "/nix/store/path/whatever.exe" is an not a valid CIL image
|
|
|
|
dontStrip = true;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A functional CLI language";
|
2014-03-08 15:00:57 +00:00
|
|
|
homepage = "http://fsharp.org/";
|
2012-04-12 12:57:43 +01:00
|
|
|
license = stdenv.lib.licenses.asl20;
|
2014-03-08 15:00:57 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ thoughtpolice raskin ];
|
2017-03-09 04:39:56 +00:00
|
|
|
platforms = with stdenv.lib.platforms; unix;
|
2012-04-12 12:39:40 +01:00
|
|
|
};
|
|
|
|
}
|