depot/pkgs/development/ocaml-modules/duppy/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

24 lines
582 B
Nix

{ lib, buildDunePackage, fetchFromGitHub, re }:
buildDunePackage rec {
pname = "duppy";
version = "0.9.4";
minimalOCamlVersion = "4.07";
src = fetchFromGitHub {
owner = "savonet";
repo = "ocaml-duppy";
rev = "v${version}";
sha256 = "sha256-rVdfAMu26YgS/TZk2XPqaR6KTDLbh9Elkf8rjhSnNO4=";
};
propagatedBuildInputs = [ re ];
meta = with lib; {
homepage = "https://github.com/savonet/ocaml-duppy";
description = "Library providing monadic threads";
license = licenses.lgpl21Only;
maintainers = with maintainers; [ dandellion ];
};
}