-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplugin-specifics.nix
More file actions
42 lines (41 loc) · 963 Bytes
/
plugin-specifics.nix
File metadata and controls
42 lines (41 loc) · 963 Bytes
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
{
sysdeps =
pkgs:
# Declare the non-rust libs (from nixpkgs) that each plugin packaged on crates.io needs to build
#
# Deps are to be added here on a case-by-case fashion
with pkgs; {
audio_hook = [ alsa-lib ];
bigquery = [ openssl ];
binaryview = [ libX11 ];
cassandra_query = [
cassandra-cpp-driver
cryptodev
openssl
libuv
];
cloud = [ openssl ];
connectorx = [ perl ];
dbus = [ dbus ];
fetch = [ openssl ];
from_dhall = [ openssl ];
gstat = [ openssl ];
input_global_listen = [ libX11 ];
plotters = [ fontconfig ];
polars = [ openssl ];
post = [ openssl ];
prometheus = [ openssl ];
query = [
openssl
curl
];
s3 = [ openssl ];
twitch = [ openssl ];
ws = [ openssl ];
};
# These plugins won't be built:
known-broken = [
"from_dhall"
"unzip"
];
}