lol

davfs2: fix aarch64 cross compilation by explicitly setting --with-neon (#263453)

authored by

Nick Cao and committed by
GitHub
8da071d6 d6ada5d8

+7 -2
+7 -2
pkgs/tools/filesystems/davfs2/default.nix
··· 21 21 autoreconfHook 22 22 ]; 23 23 24 - buildInputs = [ neon zlib ]; 24 + buildInputs = [ 25 + zlib 26 + ]; 25 27 26 28 patches = [ 27 29 ./fix-sysconfdir.patch ··· 36 38 }) 37 39 ]; 38 40 39 - configureFlags = [ "--sysconfdir=/etc" ]; 41 + configureFlags = [ 42 + "--sysconfdir=/etc" 43 + "--with-neon=${lib.getLib neon}" 44 + ]; 40 45 41 46 meta = { 42 47 homepage = "https://savannah.nongnu.org/projects/davfs2";