summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/bwd/default.nix
blob: 0c5509e08de96495eb5bc194769b25469f14e1d9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib, fetchFromGitHub, buildDunePackage, qcheck-core }:

buildDunePackage rec {
  pname = "bwd";
  version = "2.0.0";

  minimalOCamlVersion = "4.12";

  src = fetchFromGitHub {
    owner = "RedPRL";
    repo = "ocaml-bwd";
    rev = version;
    sha256 = "sha256:0zgi8an53z6wr6nzz0zlmhx19zhqy1w2vfy1sq3sikjwh74jjq60";
  };

  doCheck = true;
  nativeCheckInputs = [ qcheck-core ];

  meta = {
    description = "Backward Lists";
    inherit (src.meta) homepage;
    license = lib.licenses.asl20;
    maintainers = [ lib.maintainers.vbgl ];
  };
}