mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
18 lines
382 B
Nix
18 lines
382 B
Nix
{ lib, fetchFromGitHub, buildDunePackage, angstrom, lwt }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "angstrom-lwt-unix";
|
|
|
|
inherit (angstrom) version src;
|
|
|
|
propagatedBuildInputs = [ angstrom lwt ];
|
|
|
|
doCheck = true;
|
|
|
|
meta = {
|
|
inherit (angstrom.meta) homepage license;
|
|
description = "Lwt_unix support for Angstrom";
|
|
maintainers = with lib.maintainers; [ romildo ];
|
|
};
|
|
}
|