mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 11:32:03 +00:00
f3282c8d1e
* treewide: remove unused variables * making ofborg happy
9 lines
165 B
Nix
9 lines
165 B
Nix
{ buildDunePackage, zmq, ocaml_lwt }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "zmq-lwt";
|
|
inherit (zmq) version src meta;
|
|
|
|
propagatedBuildInputs = [ zmq ocaml_lwt ];
|
|
}
|