Skip to content

Commit

Permalink
rio: 0.1.0 -> 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
GaetanLepage authored and erictapen committed Jul 9, 2024
1 parent 328c4c3 commit c6187fc
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions pkgs/applications/terminal-emulators/rio/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@

, withWayland ? !stdenv.isDarwin
, wayland

, testers
, rio
}:
let
rlinkLibs = if stdenv.isDarwin then [
Expand All @@ -52,16 +55,16 @@ let
in
rustPlatform.buildRustPackage rec {
pname = "rio";
version = "0.1.0";
version = "0.1.1";

src = fetchFromGitHub {
owner = "raphamorim";
repo = "rio";
rev = "v${version}";
hash = "sha256-Jp8f8u9CkY+pz6QaoWp6P6+OqsIjhzXH0eeoBiSDR0k=";
rev = "refs/tags/v${version}";
hash = "sha256-Hll9QpCN0/NDJ3tgJFnmNjfIotppGg5/BrHMxGmxOTo=";
};

cargoHash = "sha256-3FirYpHxTRvXgRQACVvmwlaCNTyJ8dLbZ258qv5vbsc=";
cargoHash = "sha256-yyxJi0kK2d2I+9GncYHcRKbdngYSltDjsTuChqaDG/U=";

nativeBuildInputs = [
ncurses
Expand Down Expand Up @@ -108,7 +111,10 @@ rustPlatform.buildRustPackage rec {
extraArgs = [ "--version-regex" "v([0-9.]+)" ];
};

tests.test = nixosTests.terminal-emulators.rio;
tests = {
test = nixosTests.terminal-emulators.rio;
version = testers.testVersion { package = rio; };
};
};

meta = {
Expand Down

0 comments on commit c6187fc

Please sign in to comment.