mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 03:43:06 +00:00
27 lines
554 B
Nix
27 lines
554 B
Nix
{ lib, fetchFromGitHub, buildDunePackage, qcheck-core }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "bwd";
|
|
version = "2.1.0";
|
|
|
|
minimalOCamlVersion = "4.12";
|
|
duneVersion = "3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "RedPRL";
|
|
repo = "ocaml-bwd";
|
|
rev = version;
|
|
hash = "sha256-ucXOBjD1behL2h8CZv64xtRjCPkajZic7G1oxxDmEXY=";
|
|
};
|
|
|
|
doCheck = true;
|
|
checkInputs = [ qcheck-core ];
|
|
|
|
meta = {
|
|
description = "Backward Lists";
|
|
inherit (src.meta) homepage;
|
|
license = lib.licenses.asl20;
|
|
maintainers = [ lib.maintainers.vbgl ];
|
|
};
|
|
}
|