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

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

18 lines
348 B
Nix
Raw Normal View History

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