biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / misc / pomodoro / default.nix
blobd9f76a75451b8f86abd3c5622613a29865210da5
1 { lib, stdenv, fetchFromGitHub, rustPlatform, Foundation }:
3 rustPlatform.buildRustPackage rec {
4   pname = "pomodoro";
5   version = "unstable-2021-06-18";
7   src = fetchFromGitHub {
8     owner = "SanderJSA";
9     repo = "Pomodoro";
10     rev = "c833b9551ed0b09e311cdb369cc8226c5b9cac6a";
11     sha256 = "sha256-ZA1q1YVJcdSUF9NTikyT3vrRnqbsu5plzRI2gMu+qnQ=";
12   };
14   cargoHash = "sha256-6ZhWStZebXSwrej36DXifrsrmR1SWW3PwGUX0hqPwE4=";
15   buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ Foundation ];
17   meta = with lib; {
18     description = "Simple CLI pomodoro timer using desktop notifications written in Rust";
19     homepage = "https://github.com/SanderJSA/Pomodoro";
20     license = licenses.mit;
21     maintainers = with maintainers; [ annaaurora ];
22     # error: redefinition of module 'ObjectiveC'
23     broken = stdenv.hostPlatform.isDarwin;
24     mainProgram = "pomodoro";
25   };