mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
alt-ergo-free: add 2.4.3
This commit is contained in:
parent
d520389055
commit
a01950e1c6
1 changed files with 40 additions and 0 deletions
40
pkgs/by-name/al/alt-ergo-free/package.nix
Normal file
40
pkgs/by-name/al/alt-ergo-free/package.nix
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
{
|
||||
fetchurl,
|
||||
lib,
|
||||
ocamlPackages,
|
||||
stdenv,
|
||||
}:
|
||||
|
||||
ocamlPackages.buildDunePackage (finalAttrs: {
|
||||
pname = "alt-ergo-free";
|
||||
version = "2.4.3";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/OCamlPro/alt-ergo/releases/download/v${finalAttrs.version}-free/alt-ergo-${finalAttrs.version}-free.tar.gz";
|
||||
hash = "sha256-ksVP9HH9pY+T6Es/wgC9pGd805AGw1e1vgfVlNGCXG8=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ ocamlPackages.menhir ];
|
||||
|
||||
sourceRoot = ".";
|
||||
|
||||
buildInputs = with ocamlPackages; [
|
||||
cmdliner
|
||||
camlzip
|
||||
stdlib-shims
|
||||
dune-configurator
|
||||
dune-build-info
|
||||
num
|
||||
psmt2-frontend
|
||||
ocplib-simplex_0_4
|
||||
zarith
|
||||
seq
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "High-performance theorem prover and SMT solver";
|
||||
homepage = "https://alt-ergo.ocamlpro.com/";
|
||||
license = lib.licenses.cecill-c;
|
||||
maintainers = with lib.maintainers; [ redianthus ];
|
||||
};
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue