2018-01-08 06:45:10 +01:00
|
|
|
# Temporarily avoid dependency on dotnetbuildhelpers to avoid rebuilding many times while working on it
|
2015-05-22 15:25:02 +02:00
|
|
|
|
2022-01-07 17:09:13 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, mono, pkg-config, dotnetbuildhelpers, autoconf, automake, which }:
|
2014-03-08 16:00:57 +01:00
|
|
|
|
2012-04-12 13:39:40 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "fsharp";
|
2016-03-30 21:45:49 +02:00
|
|
|
version = "4.0.1.1";
|
2012-04-12 13:39:40 +02:00
|
|
|
|
2022-01-07 17:09:13 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "fsharp";
|
|
|
|
repo = "fsharp";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "sha256-dgTEM2aL8lVjVMuW0+HLc+TUA39IiuBv/RfHYNURh5s=";
|
2012-04-12 13:39:40 +02:00
|
|
|
};
|
|
|
|
|
2022-03-31 03:11:06 +02:00
|
|
|
nativeBuildInputs = [ pkg-config autoconf automake ];
|
|
|
|
buildInputs = [ mono dotnetbuildhelpers which ];
|
2015-11-08 21:42:56 +01:00
|
|
|
|
2014-03-21 10:08:59 +01:00
|
|
|
configurePhase = ''
|
2015-11-08 21:42:56 +01:00
|
|
|
sed -i '988d' src/FSharpSource.targets
|
2019-01-15 23:41:31 +01:00
|
|
|
substituteInPlace ./autogen.sh --replace "/usr/bin/env sh" "${stdenv.shell}"
|
2014-03-21 10:08:59 +01:00
|
|
|
./autogen.sh --prefix $out
|
|
|
|
'';
|
2012-04-12 13:39:40 +02:00
|
|
|
|
2014-03-08 22:45:52 +01: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 15:25:02 +02: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 22:45:52 +01:00
|
|
|
'';
|
|
|
|
|
2012-04-12 13:39:40 +02: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";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://fsharp.org/";
|
2021-01-22 12:25:31 +01:00
|
|
|
license = lib.licenses.asl20;
|
|
|
|
maintainers = with lib.maintainers; [ thoughtpolice raskin ];
|
|
|
|
platforms = with lib.platforms; unix;
|
2012-04-12 13:39:40 +02:00
|
|
|
};
|
|
|
|
}
|