chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / wt / wttrbar / package.nix
blob0110caec8e50a11a82b7a3eefef71feb6314f9a8
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , rustPlatform
5 , darwin
6 , nix-update-script
7 }:
9 rustPlatform.buildRustPackage rec {
10   pname = "wttrbar";
11   version = "0.10.6";
13   src = fetchFromGitHub {
14     owner = "bjesus";
15     repo = "wttrbar";
16     rev = version;
17     hash = "sha256-fuLKWooXn966RORH20D9wwbjNtyLEZOO8Y8RcjsFwqM=";
18   };
20   buildInputs = lib.optionals stdenv.hostPlatform.isDarwin (with darwin.apple_sdk_11_0.frameworks; [ Security SystemConfiguration ]);
22   cargoHash = "sha256-Of1tHKIL2XbzA6YFxtvaP9sa+KMw8uJTFG0n84g2Eog=";
24   passthru.updateScript = nix-update-script { };
26   meta = {
27     description = "Simple but detailed weather indicator for Waybar using wttr.in";
28     homepage = "https://github.com/bjesus/wttrbar";
29     license = lib.licenses.mit;
30     maintainers = with lib.maintainers; [ khaneliman ];
31     mainProgram = "wttrbar";
32   };