forked from Cypherock/cypherock-cysync
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshell.nix
More file actions
39 lines (39 loc) · 632 Bytes
/
Copy pathshell.nix
File metadata and controls
39 lines (39 loc) · 632 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
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "cysync";
buildInputs = [
nodejs_18
nodePackages.pnpm
python39
nodePackages.node-gyp
libusb1
udev
rpm
dpkg
fakeroot
];
LD_LIBRARY_PATH = lib.makeLibraryPath [
libusb1
glib
nss
nspr
at-spi2-atk
cups
dbus
libdrm
gtk3
pango
cairo
xorg.libX11
xorg.libXcomposite
xorg.libXdamage
xorg.libXext
xorg.libXfixes
xorg.libXrandr
xorg.libxcb
mesa
expat
libxkbcommon
alsa-lib
];
}