about summary refs log tree commit diff
path: root/users/Profpatsch/mailbox-org/default.nix
blob: 99b9d45b7d6a5c79048c7321c3ab3d853d5572a6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ depot, pkgs, lib, ... }:

let

  cas-serve =
    lib.pipe ./MailboxOrg.hs [
      (depot.users.Profpatsch.writers.writeHaskellInteractive "mailbox-org"
        {
          libraries = [
            depot.users.Profpatsch.my-prelude
            depot.users.Profpatsch.execline.exec-helpers-hs
            depot.users.Profpatsch.arglib.netencode.haskell
            pkgs.haskellPackages.aeson
            pkgs.haskellPackages.http-conduit
            pkgs.haskellPackages.aeson-better-errors

          ];
          ghcArgs = [ "-threaded" ];
        })
      (depot.users.Profpatsch.arglib.netencode.with-args {
        BINS = depot.nix.getBins pkgs.dovecot_pigeonhole [ "sieve-test" ];
      })
    ];


in
cas-serve