nixpkgs/pkgs/development/ocaml-modules/angstrom-unix/default.nix
2023-12-15 06:40:48 +01:00

18 lines
365 B
Nix

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