![Cyril Cohen](/assets/img/avatar_default.png)
- put `findlib` in `buildInputs` of `mkCoqDerivation` to make sure `coq` packages find their ocaml plugin dependencies, - use `propagatedBuildInputs` to make sure ocaml plugin dependencies are in path, - updated `coqPackage.heq` (broken url), - fixed use of `DESTDIR` and `COQMF_COQLIB` in mkCoqDerivation, - adding `COQCORELIB` environement variable to put ocaml plugin files in the right place, - make `metaFetch` available from `coqPackages`
23 lines
684 B
Nix
23 lines
684 B
Nix
{ lib, mkCoqDerivation, coq, mathcomp-algebra, version ? null }:
|
|
|
|
with lib; mkCoqDerivation {
|
|
pname = "coq-bits";
|
|
repo = "bits";
|
|
inherit version;
|
|
defaultVersion = with versions; switch coq.coq-version [
|
|
{ case = isGe "8.10"; out = "1.1.0"; }
|
|
{ case = isGe "8.7"; out = "1.0.0"; }
|
|
] null;
|
|
|
|
release."1.1.0".sha256 = "sha256-TCw1kSXeW0ysIdLeNr+EGmpGumEE9i8tinEMp57UXaE=";
|
|
release."1.0.0".sha256 = "0nv5mdgrd075dpd8bc7h0xc5i95v0pkm0bfyq5rj6ii1s54dwcjl";
|
|
|
|
propagatedBuildInputs = [ mathcomp-algebra ];
|
|
|
|
meta = {
|
|
description = "A formalization of bitset operations in Coq";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ ptival ];
|
|
};
|
|
}
|