mount-zip: fix cross compilation, set strictDeps

This commit is contained in:
Nick Cao 2024-04-27 12:04:19 -04:00
parent 6671608931
commit 17f6bdc8c3
No known key found for this signature in database

View File

@ -4,7 +4,6 @@
fetchFromGitHub, fetchFromGitHub,
fuse, fuse,
boost, boost,
gcc,
icu, icu,
libzip, libzip,
pandoc, pandoc,
@ -22,15 +21,17 @@ stdenv.mkDerivation (finalAttrs: {
hash = "sha256-S2snseC9JAjYRberL2/CyRQTcZQ8GtGQNU3WuTqSRl4="; hash = "sha256-S2snseC9JAjYRberL2/CyRQTcZQ8GtGQNU3WuTqSRl4=";
}; };
strictDeps = true;
nativeBuildInputs = [ nativeBuildInputs = [
boost
gcc
icu
pandoc pandoc
pkg-config pkg-config
]; ];
buildInputs = [ buildInputs = [
boost
fuse fuse
icu
libzip libzip
]; ];