a291c8690a
GitOrigin-RevId: e6e19f3d81a982a62e1bba08f0b4f7fdc21b4ea0
19 lines
446 B
Nix
19 lines
446 B
Nix
{ depot, pkgs, ... }:
|
|
|
|
let
|
|
|
|
read-http = depot.nix.writers.rustSimple
|
|
{
|
|
name = "read-http";
|
|
dependencies = [
|
|
depot.third_party.rust-crates.ascii
|
|
depot.third_party.rust-crates.httparse
|
|
depot.users.Profpatsch.netencode.netencode-rs
|
|
depot.users.Profpatsch.arglib.netencode.rust
|
|
depot.users.Profpatsch.execline.exec-helpers
|
|
];
|
|
}
|
|
(builtins.readFile ./read-http.rs);
|
|
|
|
in
|
|
read-http
|