about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/lwt-dllist/default.nix
blob: 59e13330e58fe85904f4f562d493e7f119ddbf37 (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
26
{ lib, buildDunePackage, fetchurl, lwt }:

buildDunePackage rec {
  pname = "lwt-dllist";
  version = "1.0.0";

  minimumOCamlVersion = "4.03";

  src = fetchurl {
    url = "https://github.com/mirage/${pname}/releases/download/v${version}/${pname}-v${version}.tbz";
    sha256 = "0g111f8fq9k1hwccpkhylkp83f73mlz4xnxxr3rf9xpi2f8fh7j9";
  };

  propagatedBuildInputs = [
    lwt
  ];

  doCheck = true;

  meta = with lib; {
    description = "Mutable doubly-linked list with Lwt iterators";
    homepage = "https://github.com/mirage/lwt-dllist";
    license = licenses.mit;
    maintainers = [ maintainers.sternenseemann ];
  };
}