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