mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 12:23:02 +00:00
20 lines
277 B
Nix
20 lines
277 B
Nix
{ buildDunePackage
|
|
, faraday-lwt-unix
|
|
, gluten
|
|
, gluten-lwt
|
|
, lwt_ssl
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "gluten-lwt-unix";
|
|
inherit (gluten) doCheck meta src version;
|
|
|
|
duneVersion = "3";
|
|
|
|
propagatedBuildInputs = [
|
|
faraday-lwt-unix
|
|
gluten-lwt
|
|
lwt_ssl
|
|
];
|
|
}
|