mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 19:54:05 +00:00
3005e695d4
Diff: https://github.com/RedPRL/ocaml-bwd/compare/2.1.0...2.2.0 Changelog: https://github.com/RedPRL/ocaml-bwd/blob/2.2.0/CHANGELOG.markdown
28 lines
665 B
Nix
28 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 ];
|
|
};
|
|
}
|