mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
51 lines
1.7 KiB
Nix
51 lines
1.7 KiB
Nix
# Temporarily avoid dependency on dotnetbuildhelpers to avoid rebuilding many times while working on it
|
|
|
|
{ lib, stdenv, fetchFromGitHub, mono, pkg-config, dotnetbuildhelpers, autoconf, automake, which }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "fsharp";
|
|
version = "4.0.1.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "fsharp";
|
|
repo = "fsharp";
|
|
rev = version;
|
|
sha256 = "sha256-dgTEM2aL8lVjVMuW0+HLc+TUA39IiuBv/RfHYNURh5s=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config autoconf automake ];
|
|
buildInputs = [ mono dotnetbuildhelpers which ];
|
|
|
|
configurePhase = ''
|
|
sed -i '988d' src/FSharpSource.targets
|
|
substituteInPlace ./autogen.sh --replace "/usr/bin/env sh" "${stdenv.shell}"
|
|
./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 = "Functional CLI language";
|
|
homepage = "https://fsharp.org/";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ thoughtpolice raskin ];
|
|
platforms = with lib.platforms; unix;
|
|
};
|
|
}
|