Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
48 lines
1.3 KiB
Nix
48 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
stdenvNoCC,
|
|
fetchFromGitHub,
|
|
buildDotnetModule,
|
|
dotnetCorePackages,
|
|
unstableGitUpdater,
|
|
}:
|
|
|
|
buildDotnetModule (finalAttrs: {
|
|
pname = "formula-dotnet";
|
|
version = "2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "VUISIS";
|
|
repo = "formula-dotnet";
|
|
rev = "8ee2e6abfd4ce038e1d9cb9c8602dec1ed6c0163";
|
|
hash = "sha256-2ulv//YV3OqrfFltgUCeDe4rOPC0qqJ+80/D2lIoih8=";
|
|
};
|
|
|
|
patches = [ ./dotnet-8-upgrade.patch ];
|
|
|
|
dotnet-sdk = dotnetCorePackages.sdk_8_0;
|
|
nugetDeps = ./nuget.json;
|
|
projectFile = "Src/CommandLine/CommandLine.csproj";
|
|
|
|
postFixup =
|
|
lib.optionalString stdenvNoCC.hostPlatform.isLinux ''
|
|
mv $out/bin/CommandLine $out/bin/formula
|
|
''
|
|
+ lib.optionalString stdenvNoCC.hostPlatform.isDarwin ''
|
|
makeWrapper ${dotnetCorePackages.runtime_8_0}/bin/dotnet $out/bin/formula \
|
|
--add-flags "$out/lib/formula-dotnet/CommandLine.dll" \
|
|
--prefix DYLD_LIBRARY_PATH : $out/lib/formula-dotnet/runtimes/macos/native
|
|
'';
|
|
|
|
passthru.updateScript = unstableGitUpdater { url = finalAttrs.meta.homepage; };
|
|
|
|
meta = with lib; {
|
|
description = "Formal Specifications for Verification and Synthesis";
|
|
homepage = "https://github.com/VUISIS/formula-dotnet";
|
|
license = licenses.mspl;
|
|
maintainers = with maintainers; [ siraben ];
|
|
platforms = platforms.unix;
|
|
mainProgram = "formula";
|
|
};
|
|
})
|