nixpkgs/pkgs/development/ocaml-modules/angstrom-unix/default.nix
2023-04-11 06:36:01 +02:00

20 lines
387 B
Nix

{ lib, fetchFromGitHub, buildDunePackage, angstrom }:
buildDunePackage rec {
pname = "angstrom-unix";
inherit (angstrom) version src;
duneVersion = "3";
propagatedBuildInputs = [ angstrom ];
doCheck = true;
meta = {
inherit (angstrom.meta) homepage license;
description = "Unix support for Angstrom";
maintainers = with lib.maintainers; [ romildo ];
};
}