dwarfs: 0.6.1 -> 0.6.2

This commit is contained in:
Stella 2022-10-24 19:01:13 +02:00 committed by Rick van Schijndel
parent f8636f5d05
commit b380f254a0

View File

@ -26,14 +26,14 @@
stdenv.mkDerivation rec {
pname = "dwarfs";
version = "0.6.1";
version = "0.6.2";
src = fetchFromGitHub {
owner = "mhx";
repo = "dwarfs";
rev = "v${version}";
fetchSubmodules = true;
sha256 = "sha256-bGJkgcq8JxueRTX08QpJv1A0O5wXbiIgUY7BrY0Ln/M=";
sha256 = "sha256-fA/3AooDndqYiK215cu/zTqCqeccHnwIX2CfJ9sC+Fc=";
};
patches = with lib.versions; [
@ -59,6 +59,10 @@ stdenv.mkDerivation rec {
# may be added under an option in the future
# "-DWITH_LEGACY_FUSE=ON"
"-DWITH_TESTS=ON"
# temporary hack until folly builds work on aarch64,
# see https://github.com/facebook/folly/issues/1880
"-DCMAKE_LIBRARY_ARCHITECTURE=${if stdenv.isx86_64 then "x86_64" else "dummy"}"
];
nativeBuildInputs = [