about summary refs log blame commit diff
path: root/users/Profpatsch/imap-idle.nix
blob: 3ad5375d89affd9467e3646fd367c4443729ed06 (plain) (tree)
1
2
3
4
5
6
7
8
9


                          
                                            


                                                  

                                         




                                                  
{ 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