eb41eef612
I think it’s solid enough to use in a wider context. Change-Id: If53e8bbb6b90fa88d73fb42730db470e822ea182 Reviewed-on: https://cl.tvl.fyi/c/depot/+/3055 Tested-by: BuildkiteCI Reviewed-by: sterni <sternenseemann@systemli.org> Reviewed-by: lukegb <lukegb@tvl.fyi>
14 lines
368 B
Nix
14 lines
368 B
Nix
{ depot, pkgs, lib, ... }:
|
|
|
|
let
|
|
imap-idle = depot.nix.writers.rustSimple {
|
|
name = "imap-idle";
|
|
dependencies = [
|
|
depot.users.Profpatsch.arglib.netencode.rust
|
|
depot.third_party.rust-crates.imap
|
|
depot.third_party.rust-crates.epoll
|
|
depot.users.Profpatsch.execline.exec-helpers
|
|
];
|
|
} (builtins.readFile ./imap-idle.rs);
|
|
|
|
in imap-idle
|