2021-01-27 12:52:38 +01:00
|
|
|
{ depot, pkgs, ... }:
|
|
|
|
|
|
|
|
let
|
|
|
|
|
2021-04-23 22:04:42 +02:00
|
|
|
read-http = depot.nix.writers.rustSimple {
|
2021-01-27 12:52:38 +01:00
|
|
|
name = "read-http";
|
|
|
|
dependencies = [
|
2021-04-02 21:59:25 +02:00
|
|
|
depot.third_party.rust-crates.ascii
|
|
|
|
depot.third_party.rust-crates.httparse
|
2021-01-27 12:52:38 +01:00
|
|
|
depot.users.Profpatsch.netencode.netencode-rs
|
|
|
|
depot.users.Profpatsch.arglib.netencode.rust
|
2021-01-31 16:38:21 +01:00
|
|
|
depot.users.Profpatsch.execline.exec-helpers
|
2021-01-27 12:52:38 +01:00
|
|
|
];
|
|
|
|
} (builtins.readFile ./read-http.rs);
|
|
|
|
|
2021-01-31 16:38:21 +01:00
|
|
|
in read-http
|