a291c8690a
GitOrigin-RevId: e6e19f3d81a982a62e1bba08f0b4f7fdc21b4ea0
17 lines
392 B
Nix
17 lines
392 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
|