forked from holochain/launcher-tauri
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
81 lines (74 loc) · 2.03 KB
/
flake.nix
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
76
77
78
79
80
81
{
description = "Template for Holochain app development";
# Note that this flake is partly based on https://tauri.app/v1/guides/getting-started/prerequisites/#setting-up-linux
# and partly on Holonix. Please check both when making updates!
inputs = {
nixpkgs.follows = "holochain/nixpkgs";
versions.url = "github:holochain/holochain?dir=versions/weekly";
holochain = {
url = "github:holochain/holochain";
inputs.versions.follows = "versions";
};
};
outputs = inputs @ {...}:
inputs.holochain.inputs.flake-parts.lib.mkFlake
{
inherit inputs;
}
{
systems = builtins.attrNames inputs.holochain.devShells;
perSystem = {
self',
inputs',
config,
pkgs,
system,
...
}: let
libraries = with pkgs; [
webkitgtk
gtk3
cairo
gdk-pixbuf
glib
dbus
openssl_3
librsvg
];
packages = with pkgs; [
curl
wget
pkg-config
dbus
openssl_3
glib
gtk3
libsoup
webkitgtk
librsvg
];
in {
devShells.default = pkgs.mkShell {
inputsFrom = [inputs'.holochain.devShells.rustDev];
buildInputs = packages;
shellHook = inputs'.holochain.devShells.rustDev.shellHook +
''
export LD_LIBRARY_PATH=${pkgs.lib.makeLibraryPath libraries}:$LD_LIBRARY_PATH
export XDG_DATA_DIRS=${pkgs.gsettings-desktop-schemas}/share/gsettings-schemas/${pkgs.gsettings-desktop-schemas.name}:${pkgs.gtk3}/share/gsettings-schemas/${pkgs.gtk3.name}:$XDG_DATA_DIRS
'';
packages = with pkgs; [
nodejs-18_x
gtksourceview3
libappindicator
pango
squashfsTools
atk
llvmPackages.libclang
llvmPackages.libcxxClang
clang
zlib
] ++ packages;
};
};
};
}