2024-06-05 15:53:02 +00:00
|
|
|
{ lib, buildDunePackage, fetchFromGitHub, re }:
|
2022-06-16 17:23:12 +00:00
|
|
|
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "duppy";
|
2024-06-05 15:53:02 +00:00
|
|
|
version = "0.9.4";
|
|
|
|
|
|
|
|
minimalOCamlVersion = "4.07";
|
2022-06-16 17:23:12 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "savonet";
|
|
|
|
repo = "ocaml-duppy";
|
|
|
|
rev = "v${version}";
|
2024-06-05 15:53:02 +00:00
|
|
|
sha256 = "sha256-rVdfAMu26YgS/TZk2XPqaR6KTDLbh9Elkf8rjhSnNO4=";
|
2022-06-16 17:23:12 +00:00
|
|
|
};
|
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
propagatedBuildInputs = [ re ];
|
2022-06-16 17:23:12 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/savonet/ocaml-duppy";
|
|
|
|
description = "Library providing monadic threads";
|
|
|
|
license = licenses.lgpl21Only;
|
|
|
|
maintainers = with maintainers; [ dandellion ];
|
|
|
|
};
|
|
|
|
}
|