diff options
author | Jan van Brügge | 2024-05-24 15:05:14 +0100 |
---|---|---|
committer | Jan van Brügge | 2024-07-06 18:39:04 +0100 |
commit | 12e943374718f6d11ed12b36cb8490c610fbcf7b (patch) | |
tree | 24ce98b922e4d57f7db393b2edde3edba1f97004 /pkgs/by-name/na | |
parent | 0f9b02a8ab97b1603e18620f9881c5ad96382d1e (diff) |
naproche: unstable-2024-01-18 -> unstable-2024-05-19
Diffstat (limited to 'pkgs/by-name/na')
-rw-r--r-- | pkgs/by-name/na/naproche/package.nix | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/pkgs/by-name/na/naproche/package.nix b/pkgs/by-name/na/naproche/package.nix new file mode 100644 index 000000000000..1843ebf1c789 --- /dev/null +++ b/pkgs/by-name/na/naproche/package.nix @@ -0,0 +1,35 @@ +{ lib, fetchFromGitHub, haskellPackages, makeWrapper, eprover }: + +with haskellPackages; mkDerivation { + pname = "Naproche-SAD"; + version = "unstable-2024-05-19"; + + src = fetchFromGitHub { + owner = "naproche"; + repo = "naproche"; + rev = "ccb35e6eeb31c82bdd8857d5f84deda296ed53ec"; + hash = "sha256-pIRKjbSFP1q8ldMZXm0WSP0FJqy/lQslNQcoed/y9W0="; + }; + + isExecutable = true; + + buildTools = [ hpack makeWrapper ]; + executableHaskellDepends = [ + base array bytestring containers ghc-prim megaparsec mtl network process + split temporary text threads time transformers uuid + ]; + + prePatch = "hpack"; + doCheck = false; # Tests are broken in upstream + + postInstall = '' + wrapProgram $out/bin/Naproche-SAD \ + --set-default NAPROCHE_EPROVER ${eprover}/bin/eprover + ''; + + homepage = "https://github.com/naproche/naproche#readme"; + description = "Write formal proofs in natural language and LaTeX"; + maintainers = with lib.maintainers; [ jvanbruegge ]; + license = lib.licenses.gpl3Only; + mainProgram = "Naproche-SAD"; +} |