Unverified Commit 57feb92a authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files

timr-tui: 1.6.1 -> 1.8.0 (#508611)

parents e6663190 df175d75
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -24531,6 +24531,12 @@
    githubId = 77039267;
    name = "Vito Secona";
  };
  sectore = {
    email = "sectore@gmail.com";
    github = "sectore";
    githubId = 47693;
    name = "Jens Krause";
  };
  sedlund = {
    email = "scott+nixpkgs@teraton.com";
    github = "sedlund";
+8 −5
Original line number Diff line number Diff line
@@ -14,16 +14,16 @@
}:
rustPlatform.buildRustPackage (finalAttrs: {
  pname = "timr-tui";
  version = "1.6.1";
  version = "1.8.0";

  src = fetchFromGitHub {
    owner = "sectore";
    repo = "timr-tui";
    tag = "v${finalAttrs.version}";
    hash = "sha256-s2FnMwDq4tYBaWaT9y1GLbVGFs7zSnOmjcF5leO12JE=";
    hash = "sha256-kxXAH8IUe1LOoS8ch9OL6sS0oeviSN6H7hBJ6ZY+oQw=";
  };

  cargoHash = "sha256-9yd348QGjFxt+QmEBuYzd612mFm/PyETrZy4z5wW+nI=";
  cargoHash = "sha256-zNbXxT0Z1TtqitD4P7m8TgEvg8C0AOslrVNKD/Nd9cQ=";

  # Enable upstream "sound" feature when requested
  buildFeatures = lib.optionals enableSound [ "sound" ];
@@ -55,12 +55,15 @@ rustPlatform.buildRustPackage (finalAttrs: {
  passthru.updateScript = nix-update-script { };

  meta = {
    description = "TUI to organize your time: Pomodoro, Countdown, Timer";
    description = "TUI to organize your time: Pomodoro, Countdown, Timer, Event";
    homepage = "https://github.com/sectore/timr-tui";
    changelog = "https://github.com/sectore/timr-tui/releases/tag/v${finalAttrs.version}";
    license = lib.licenses.mit;
    mainProgram = "timr-tui";
    maintainers = [ lib.maintainers.flokkq ];
    maintainers = with lib.maintainers; [
      flokkq
      sectore
    ];
    platforms = lib.platforms.unix;
  };
})