chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / sh / shadow-tls / package.nix
blob481729feff67f918596aca9acd9e990051976e20
1 { lib
2 , fetchFromGitHub
3 , rustPlatform
4 }:
6 rustPlatform.buildRustPackage rec{
7   pname = "shadow-tls";
8   version = "0.2.25";
10   src = fetchFromGitHub {
11     owner = "ihciah";
12     repo = "shadow-tls";
13     rev = "v${version}";
14     hash = "sha256-T+GPIrcME6Wq5sdfIt4t426/3ew5sUQMykYeZ6zw1ko=";
15   };
17   cargoHash = "sha256-w+DQeiQAtVsTw1VJhntX1FXymgS0fxsXiUmd6OjVWLQ=";
19   RUSTC_BOOTSTRAP = 1;
21   # network required
22   doCheck = false;
24   meta = with lib; {
25     homepage = "https://github.com/ihciah/shadow-tls";
26     description = "Proxy to expose real tls handshake to the firewall";
27     license = licenses.mit;
28     mainProgram = "shadow-tls";
29     maintainers = with maintainers; [ oluceps ];
30     platforms = platforms.linux;
31   };