504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
17 lines
255 B
Nix
17 lines
255 B
Nix
{ buildDunePackage
|
|
, faraday-lwt-unix
|
|
, gluten
|
|
, gluten-lwt
|
|
, lwt_ssl
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "gluten-lwt-unix";
|
|
inherit (gluten) doCheck meta src version;
|
|
|
|
propagatedBuildInputs = [
|
|
faraday-lwt-unix
|
|
gluten-lwt
|
|
lwt_ssl
|
|
];
|
|
}
|