rio: 0.1.15 -> 0.1.16 (#344751)

This commit is contained in:
Mathew Polzin 2024-09-28 09:47:26 -05:00 committed by GitHub
commit 22eabad32b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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;
};
}