mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
14 lines
331 B
Nix
14 lines
331 B
Nix
{ buildDunePackage, ppx_sexp_conv, conduit, lwt, sexplib }:
|
|
|
|
buildDunePackage {
|
|
pname = "conduit-lwt";
|
|
inherit (conduit) version src;
|
|
|
|
buildInputs = [ ppx_sexp_conv ];
|
|
|
|
propagatedBuildInputs = [ conduit lwt sexplib ];
|
|
|
|
meta = conduit.meta // {
|
|
description = "Network connection establishment library for Lwt";
|
|
};
|
|
}
|