about summary refs log tree commit diff
path: root/users/Profpatsch/read-http.nix
blob: 854a11b7d099f1df5f8b14493bbde8e4a9206e73 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ 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