File tree Expand file tree Collapse file tree 1 file changed +25
-1
lines changed Expand file tree Collapse file tree 1 file changed +25
-1
lines changed Original file line number Diff line number Diff line change @@ -119,7 +119,31 @@ sudo apk add \
119
119
</TabItem >
120
120
<TabItem label = " NixOS" >
121
121
122
- TODO: Need to build out NixOS instructions
122
+ Using ` nix-shell ` :
123
+
124
+ ```
125
+ with import <nixpkgs> { };
126
+ mkShell {
127
+ buildInputs = [
128
+ at-spi2-atk
129
+ atkmm
130
+ cairo
131
+ gdk-pixbuf
132
+ glib
133
+ gobject-introspection
134
+ gobject-introspection.dev
135
+ gtk3
136
+ harfbuzz
137
+ librsvg
138
+ libsoup_3
139
+ pango
140
+ webkitgtk_4_1
141
+ webkitgtk_4_1.dev
142
+ ];
143
+
144
+ PKG_CONFIG_PATH = "${glib.dev}/lib/pkgconfig:${libsoup_3.dev}/lib/pkgconfig:${webkitgtk_4_1.dev}/lib/pkgconfig:${at-spi2-atk.dev}/lib/pkgconfig:${gtk3.dev}/lib/pkgconfig:${gdk-pixbuf.dev}/lib/pkgconfig:${cairo.dev}/lib/pkgconfig:${pango.dev}/lib/pkgconfig:${harfbuzz.dev}/lib/pkgconfig";
145
+ }
146
+ ```
123
147
124
148
</TabItem >
125
149
</Tabs >
You can’t perform that action at this time.
0 commit comments