blob: 614993c457e1450267f8f061d88a0359bd0a53e9 (
plain) (
tree)
|
|
{ depot, pkgs, ... }:
let
read-http = depot.users.Profpatsch.writers.rustSimple {
name = "read-http";
dependencies = [
depot.users.Profpatsch.rust-crates.ascii
depot.users.Profpatsch.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
|