chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / ge / geticons / package.nix
blob5d8d7d2d1df88c8a1d4a33116008f19bfdfaa235
1 { lib
2 , rustPlatform
3 , fetchFromSourcehut
4 , gitUpdater
5 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "geticons";
9   version = "1.2.2";
11   src = fetchFromSourcehut {
12     owner = "~zethra";
13     repo = pname;
14     rev = version;
15     hash = "sha256-HEnUfOLeRTi2dRRqjDPVwVVHo/GN9wE28x5qv3qOpCY=";
16   };
18   cargoHash = "sha256-Znwni7uMnG9cpZbztUMY1j73K+XrDLv5zyNEZDoxWg4=";
19   passthru.updateScript = gitUpdater { };
21   meta = with lib; {
22     description = "CLI utility to get icons for apps on your system or other generic icons by name";
23     mainProgram = "geticons";
24     homepage = "https://git.sr.ht/~zethra/geticons";
25     license = with licenses; [ gpl3Plus ];
26     maintainers = with maintainers; [ Madouura ];
27   };