Unverified Commit 22eabad3 authored by Mathew Polzin's avatar Mathew Polzin Committed by GitHub
Browse files

rio: 0.1.15 -> 0.1.16 (#344751)

parents 9ec112ad d3924417
Loading
Loading
Loading
Loading
+4 −10
Original line number Diff line number Diff line
@@ -55,16 +55,16 @@ let
in
rustPlatform.buildRustPackage rec {
  pname = "rio";
  version = "0.1.15";
  version = "0.1.16";

  src = fetchFromGitHub {
    owner = "raphamorim";
    repo = "rio";
    rev = "v${version}";
    hash = "sha256-aLqWhRaNqi7gMDxBITLU/Tj//h7RURycLSZXOOq83As=";
    hash = "sha256-3OtPlaYkTPIF98CyaXWGZ/1msWHFdscqZXVviu0/O/o=";
  };

  cargoHash = "sha256-4nqJbz2vauO4jRuUSDjBV1pVrAJMhIP4+eUwS1+GecU=";
  cargoHash = "sha256-VpS3prTmAbWTd+gwAOA0BXso4gkcAFuhMZh8Go3Dlao=";

  nativeBuildInputs = [
    ncurses
@@ -87,7 +87,7 @@ rustPlatform.buildRustPackage rec {

  checkFlags = [
    # Fail to run in sandbox environment.
    "--skip=screen::context::test"
    "--skip=sys::unix::eventedfd::EventedFd"
  ];

  postInstall = ''
@@ -125,11 +125,5 @@ rustPlatform.buildRustPackage rec {
    platforms = lib.platforms.unix;
    changelog = "https://github.com/raphamorim/rio/blob/v${version}/docs/docs/releases.md";
    mainProgram = "rio";
    # ---- corcovado/src/sys/unix/eventedfd.rs - sys::unix::eventedfd::EventedFd (line 31) stdout ----
    # Test executable failed (exit status: 101).
    # stderr:
    # thread 'main' panicked at corcovado/src/sys/unix/eventedfd.rs:24:16:
    # called `Result::unwrap()` on an `Err` value: Os { code: 1, kind: PermissionDenied, message: "Operation not permitted" }
    broken = stdenv.hostPlatform.isDarwin;
  };
}