chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / ru / rusti-cal / package.nix
blobf03783cbc5e2cbde04ad2eb07daa0769c5c64205
1 { lib
2 , stdenv
3 , rustPlatform
4 , fetchFromGitHub
5 , darwin
6 }:
8 rustPlatform.buildRustPackage rec {
9   pname = "rusti-cal";
10   version = "1.1.0";
12   src = fetchFromGitHub {
13     owner = "arthurhenrique";
14     repo = "rusti-cal";
15     rev = "v${version}";
16     hash = "sha256-pdsP2nuJh30BzqIyxSQXak/rceA4hI9jBYy1dDVEIvI=";
17   };
19   cargoHash = "sha256-5eS+OMaNAVNyDMKFNfb0J0rLsikw2LCXhWk7MS9UV2k=";
21   buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [
22     darwin.apple_sdk.frameworks.Foundation
23   ];
25   meta = with lib; {
26     description = "Minimal command line calendar, similar to cal";
27     mainProgram = "rusti-cal";
28     homepage = "https://github.com/arthurhenrique/rusti-cal";
29     license = [ licenses.mit ];
30     maintainers = [ maintainers.detegr ];
31   };