2021-01-27 12:52:38 +01:00
|
|
|
{ depot, pkgs, ... }:
|
|
|
|
|
|
|
|
let
|
|
|
|
|
2022-01-30 17:06:58 +01:00
|
|
|
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);
|
2021-01-27 12:52:38 +01:00
|
|
|
|
2022-01-30 17:06:58 +01:00
|
|
|
in
|
|
|
|
read-http
|