Unverified Commit 08665822 authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

3cpio: mark broken on darwin due to upstream bug (#459851)

parents 9d1b4bb1 88478b7d
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -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.hostPlatform.isDarwin;
  };
}