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