chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / ri / ripsecrets / package.nix
blob3783e5ef0983b87db6ea0d46045298f80a4b042f
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "ripsecrets";
8   version = "0.1.8";
10   src = fetchFromGitHub {
11     owner = "sirwart";
12     repo = "ripsecrets";
13     rev = "v${version}";
14     hash = "sha256-MyFeSEZAG99g1Uh8KVA7CSZZVXUOF2qYJ0o1YviiPp4=";
15   };
17   cargoHash = "sha256-BKq1ttf8ctXvIbhKxHwCpjeiRKqSyN5+kP2k4CV511I=";
19   meta = with lib; {
20     description = "Command-line tool to prevent committing secret keys into your source code";
21     homepage = "https://github.com/sirwart/ripsecrets";
22     changelog = "https://github.com/sirwart/ripsecrets/blob/${src.rev}/CHANGELOG.md";
23     license = licenses.mit;
24     maintainers = with maintainers; [ figsoda ];
25     mainProgram = "ripsecrets";
26   };