mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
18 lines
264 B
Nix
18 lines
264 B
Nix
{ buildDunePackage
|
|
, faraday-lwt-unix
|
|
, gluten
|
|
, gluten-lwt
|
|
, lwt_ssl
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "gluten-lwt-unix";
|
|
inherit (gluten) doCheck meta src useDune2 version;
|
|
|
|
propagatedBuildInputs = [
|
|
faraday-lwt-unix
|
|
gluten-lwt
|
|
lwt_ssl
|
|
];
|
|
}
|