nixpkgs/pkgs/development/ocaml-modules/angstrom-lwt-unix/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
382 B
Nix
Raw Normal View History

2023-04-10 12:14:18 +00:00
{ lib, fetchFromGitHub, buildDunePackage, angstrom, lwt }:
buildDunePackage rec {
pname = "angstrom-lwt-unix";
2023-04-10 12:14:18 +00:00
inherit (angstrom) version src;
2023-04-10 12:14:18 +00:00
propagatedBuildInputs = [ angstrom lwt ];
doCheck = true;
meta = {
inherit (angstrom.meta) homepage license;
description = "Lwt_unix support for Angstrom";
maintainers = with lib.maintainers; [ romildo ];
};
}