mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
24 lines
687 B
Nix
24 lines
687 B
Nix
{ lib, mkCoqDerivation, coq, version ? null }:
|
|
with lib;
|
|
|
|
mkCoqDerivation rec {
|
|
pname = "itauto";
|
|
owner = "fbesson";
|
|
domain = "gitlab.inria.fr";
|
|
|
|
release."8.13+no".sha256 = "sha256-gXoxtLcHPoyjJkt7WqvzfCMCQlh6kL2KtCGe3N6RC/A=";
|
|
inherit version;
|
|
defaultVersion = with versions; switch coq.coq-version [
|
|
{ case = isEq "8.13"; out = "8.13+no"; }
|
|
] null;
|
|
|
|
mlPlugin = true;
|
|
extraBuildInputs = (with coq.ocamlPackages; [ ocamlbuild ]);
|
|
enableParallelBuilding = false;
|
|
|
|
meta = {
|
|
description = "A reflexive SAT solver parameterised by a leaf tactic and Nelson-Oppen support";
|
|
maintainers = with maintainers; [ siraben ];
|
|
license = licenses.gpl3Plus;
|
|
};
|
|
}
|