about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/duppy/default.nix
blob: 48d360deb23f77d9413da6fe1e4ca08db09bf510 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, buildDunePackage, fetchFromGitHub, ocaml_pcre }:

buildDunePackage rec {
  pname = "duppy";
  version = "0.9.2";

  src = fetchFromGitHub {
    owner = "savonet";
    repo = "ocaml-duppy";
    rev = "v${version}";
    sha256 = "132dawca1p5s965m40ldmnihlpgfm47y62kfbzgim7sgsdwxxw5y";
  };

  propagatedBuildInputs = [ ocaml_pcre ];

  meta = with lib; {
    homepage = "https://github.com/savonet/ocaml-duppy";
    description = "Library providing monadic threads";
    license = licenses.lgpl21Only;
    maintainers = with maintainers; [ dandellion ];
  };
}