aboutsummaryrefslogtreecommitdiff
path: root/pkgs/default.nix
blob: 5f5df82d11e6f0e20ee7f9d7a0ee32c3b6a14305 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{ pkgs }:
with pkgs;
let
  mylibs = import ../lib { inherit pkgs; };
in
rec {
  sources = import ../nix/sources.nix;
  myEnvironments = callPackage ../environments {};
  boinctui = callPackage ./boinctui {};
  cnagios = callPackage ./cnagios { inherit mylibs; };
  commento = callPackage ./commento {};
  flrn = callPackage ./flrn { inherit mylibs; slang = callPackage ./slang_1 {}; };
  genius = callPackage ./genius {};
  mtop = callPackage ./mtop {};
  muttprint = callPackage ./muttprint {};
  mutt-ics = callPackage ./mutt-ics { inherit mylibs; };
  nagios-cli = callPackage ./nagios-cli { inherit mylibs; };
  nagnu = callPackage ./nagnu { inherit mylibs; };
  nb = callPackage ./nb {};
  note = callPackage ./note {};
  notmuch-python2 = callPackage ./notmuch/notmuch-python { pythonPackages = python2Packages; };
  notmuch-python3 = callPackage ./notmuch/notmuch-python { pythonPackages = python3Packages; };
  notmuch-vim = callPackage ./notmuch/notmuch-vim {};
  pgloader = callPackage ./pgloader {};
  predixy = callPackage ./predixy { inherit mylibs; };
  rrsync_sudo = callPackage ./rrsync_sudo {};
  signaldctl = callPackage ./signaldctl {};
  telegram-history-dump = callPackage ./telegram-history-dump { inherit mylibs; };
  telegramircd = callPackage ./telegramircd { inherit mylibs; telethon = callPackage ./telethon_sync {}; };
  terminal-velocity = callPackage ./terminal-velocity {};
  tiv = callPackage ./tiv {};
  twins = callPackage ./twins {};
  umami = callPackage ./umami {};
  unicodeDoc = callPackage ./unicode {};

  cardano = callPackage ./crypto/cardano { inherit mylibs; };
  cardano-cli = callPackage ./crypto/cardano-cli {};
  iota-cli-app = callPackage ./crypto/iota-cli-app { inherit mylibs; };
  sia = callPackage ./crypto/sia {};

  proftpd = callPackage ./proftpd {};
  pure-ftpd = callPackage ./pure-ftpd {};

  composerEnv = callPackage ./composer-env {};
  webapps = callPackage ./webapps { inherit mylibs composerEnv; };

  monitoring-plugins = callPackage ./monitoring-plugins {};
  naemon = callPackage ./naemon { inherit mylibs monitoring-plugins; };
  naemon-livestatus = callPackage ./naemon-livestatus { inherit mylibs naemon; };
  gearmand = callPackage ./gearmand {};
  status_engine = {
    module = callPackage ./status_engine/module.nix { inherit mylibs; };
    worker = callPackage ./status_engine/worker.nix { inherit mylibs composerEnv; };
    interface = callPackage ./status_engine/interface.nix { inherit composerEnv; };
  };

  python3PackagesPlus = callPackage ./python-packages {
    python = python3;
    inherit mylibs;
  };
  dovecot_deleted-to-trash = callPackage ./dovecot/plugins/deleted_to_trash {
    inherit mylibs;
  };
}