We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8985df commit 7f6edb6Copy full SHA for 7f6edb6
1 file changed
shell.nix
@@ -9,7 +9,7 @@
9
gmp_static =
10
gmp.overrideAttrs (old: { dontDisableStatic = true; });
11
lzma_static =
12
- lzma.overrideAttrs (old: { dontDisableStatic = true; });
+ xz.overrideAttrs (old: { dontDisableStatic = true; });
13
in mkShell {
14
nativeBuildInputs = [
15
cabal-install
@@ -19,15 +19,18 @@
19
haskellPackages.cabal-fmt
20
hlint
21
zlib.dev
22
- zlib.static
23
git
24
- glibc.dev
25
- glibc.static
+ pkg-config
+ xz
26
bzip2_static
27
bzip2_static.dev
28
libffi_static.dev
29
gmp_static.dev
30
lzma_static.dev
+ ] ++ lib.optionals stdenv.isLinux [
31
+ zlib.static
32
+ glibc.dev
33
+ glibc.static
34
];
35
shellHook = ''
36
export LANG=C.UTF-8
0 commit comments