Compare commits

...

2 commits

Author SHA1 Message Date
Alexander Flurie 4fd5e1d882
Merge 42e97795fe into 6c87fae87d 2025-11-08 23:34:28 +01:00
flurie 42e97795fe 3cpio: mark broken on darwin due to upstream bug 2025-11-08 14:34:06 -05:00

View file

@ -5,6 +5,7 @@
lzop,
nix-update-script,
rustPlatform,
stdenv,
}:
rustPlatform.buildRustPackage rec {
@ -31,5 +32,8 @@ rustPlatform.buildRustPackage rec {
license = lib.licenses.isc;
maintainers = [ lib.maintainers.jmbaur ];
mainProgram = "3cpio";
# broken due to signature mismatch in libc crate on darwin:
# https://github.com/rust-lang/libc/issues/4360
broken = stdenv.isDarwin;
};
}