mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-25 23:36:16 +02:00
Make libsodium an unconditional dependency
The configure script will not tolerate it being missing.
This commit is contained in:
parent
28850ee900
commit
564392b57b
1 changed files with 1 additions and 1 deletions
|
@ -190,9 +190,9 @@
|
|||
libarchive
|
||||
boost
|
||||
lowdown-nix
|
||||
libsodium
|
||||
]
|
||||
++ lib.optionals stdenv.isLinux [libseccomp]
|
||||
++ lib.optional (stdenv.isLinux || stdenv.isDarwin) libsodium
|
||||
++ lib.optional stdenv.hostPlatform.isx86_64 libcpuid;
|
||||
|
||||
checkDeps = [
|
||||
|
|
Loading…
Reference in a new issue