5e7c2d6cef
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
27 lines
665 B
Nix
27 lines
665 B
Nix
{ lib, fetchFromGitHub, buildDunePackage, qcheck-core }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "bwd";
|
|
version = "2.2.0";
|
|
|
|
minimalOCamlVersion = "4.12";
|
|
duneVersion = "3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "RedPRL";
|
|
repo = "ocaml-bwd";
|
|
rev = version;
|
|
hash = "sha256-4DttkEPI9yJtMsqzTNSnoDajcvMQPIiJAHk0kJl540Y=";
|
|
};
|
|
|
|
doCheck = true;
|
|
checkInputs = [ qcheck-core ];
|
|
|
|
meta = {
|
|
description = "Backward Lists";
|
|
homepage = "https://github.com/RedPRL/ocaml-bwd";
|
|
changelog = "https://github.com/RedPRL/ocaml-bwd/blob/${version}/CHANGELOG.markdown";
|
|
license = lib.licenses.asl20;
|
|
maintainers = [ lib.maintainers.vbgl ];
|
|
};
|
|
}
|