Merge pull request #307251 from NickCao/mount-zip

mount-zip: fix cross compilation, set strictDeps
This commit is contained in:
Sandro 2024-04-28 11:42:19 +02:00 committed by GitHub
commit 4da4ac2024
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,5 +1,14 @@
{ lib, stdenv, fetchFromGitHub, fuse, boost, gcc, icu, libzip, pandoc
, pkg-config }:
{
lib,
stdenv,
fetchFromGitHub,
fuse,
boost,
icu,
libzip,
pandoc,
pkg-config,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "mount-zip";
@ -12,8 +21,19 @@ stdenv.mkDerivation (finalAttrs: {
hash = "sha256-S2snseC9JAjYRberL2/CyRQTcZQ8GtGQNU3WuTqSRl4=";
};
nativeBuildInputs = [ boost gcc icu pandoc pkg-config ];
buildInputs = [ fuse libzip ];
strictDeps = true;
nativeBuildInputs = [
pandoc
pkg-config
];
buildInputs = [
boost
fuse
icu
libzip
];
makeFlags = [ "prefix=$(out)" ];