blob: 5b347be537d49ddc0f3100cc59488d5df3408e96 (
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
65
66
67
68
69
70
71
72
73
74
75
|
{ 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 {};
duply = callPackage ./duply {};
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 {};
openarc = (mylibs.flakeCompat ../flakes/openarc).default;
opendmarc = (mylibs.flakeCompat ../flakes/opendmarc).default;
pg_activity = callPackage ./pg_activity { inherit mylibs; };
pgloader = callPackage ./pgloader {};
predixy = callPackage ./predixy { inherit mylibs; };
rrsync_sudo = callPackage ./rrsync_sudo {};
telegram-cli = callPackage ./telegram-cli { inherit mylibs; };
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 {};
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 {};
pure-ftpd = callPackage ./pure-ftpd {};
mpd = (callPackage ./mpd_0_21 {}).mpd;
mpd-small = (callPackage ./mpd_0_21 {}).mpd-small;
bitlbee-mastodon = callPackage ./bitlbee-mastodon {};
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;
};
dovecot_fts-xapian = callPackage ./dovecot/plugins/fts_xapian {
inherit mylibs;
};
fiche = callPackage ./fiche { inherit mylibs; };
zrepl = callPackage ./zrepl {};
}
|