tvl-depot/users/Profpatsch/imap-idle.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
381 B
Nix
Raw Normal View History

{ depot, pkgs, lib, ... }:
let
imap-idle = depot.users.Profpatsch.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