d4681bf626
- fetchNuGet can fetch binaries from nuget servers - buildDotnetPackage can build .NET packages using mono/xbuild - Places nuget & paket as they would clash with nix - Patch project files because F# targets are expected to be found in the mono directory (and we know that's not going to happen on nix) - Find DLLs that were copied from buildInputs and replace by symlink for sharing - Export produced DLL via the pkg-config mechanism - Create wrappers for produced EXEs - Repackaged this new infrastructure: keepass, monodevelop - Newly packaged: ExtCore, UnionArgParser, FSharp.Data, Paket, and a bunch more.. This is a combination of 73 commits.
46 lines
1.6 KiB
Nix
46 lines
1.6 KiB
Nix
# Temporaririly avoid dependency on dotnetbuildhelpers to avoid rebuilding many times while working on it
|
|
|
|
{ stdenv, fetchurl, mono, pkgconfig, dotnetbuildhelpers, autoconf, automake, which }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "fsharp-${version}";
|
|
version = "3.1.1.32";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/fsharp/fsharp/archive/${version}.tar.gz";
|
|
sha256 = "16kqgdx0y0lmxv59mc4g7l5ll60nixg5b8bg07vxfnqrf7i6dffd";
|
|
};
|
|
|
|
buildInputs = [ mono pkgconfig dotnetbuildhelpers autoconf automake which ];
|
|
configurePhase = ''
|
|
substituteInPlace ./autogen.sh --replace "/usr/bin/env sh" "/bin/sh"
|
|
./autogen.sh --prefix $out
|
|
'';
|
|
|
|
# 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
|
|
for dll in "$out/lib/mono/4.5"/FSharp*.dll
|
|
do
|
|
create-pkg-config-for-dll.sh "$out/lib/pkgconfig" "$dll"
|
|
done
|
|
'';
|
|
|
|
# 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";
|
|
homepage = "http://fsharp.org/";
|
|
license = stdenv.lib.licenses.asl20;
|
|
maintainers = with stdenv.lib.maintainers; [ thoughtpolice raskin ];
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
};
|
|
}
|