mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-11-10 01:33:11 +01:00
3cpio: mark broken on darwin due to upstream bug
This commit is contained in:
parent
c6fee0186b
commit
42e97795fe
|
|
@ -5,6 +5,7 @@
|
||||||
lzop,
|
lzop,
|
||||||
nix-update-script,
|
nix-update-script,
|
||||||
rustPlatform,
|
rustPlatform,
|
||||||
|
stdenv,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
|
|
@ -31,5 +32,8 @@ rustPlatform.buildRustPackage rec {
|
||||||
license = lib.licenses.isc;
|
license = lib.licenses.isc;
|
||||||
maintainers = [ lib.maintainers.jmbaur ];
|
maintainers = [ lib.maintainers.jmbaur ];
|
||||||
mainProgram = "3cpio";
|
mainProgram = "3cpio";
|
||||||
|
# broken due to signature mismatch in libc crate on darwin:
|
||||||
|
# https://github.com/rust-lang/libc/issues/4360
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue