biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / networking / corkscrew / default.nix
blob6c433981aeb3357018cbaf674efecb3b730547f5
1 { lib, stdenv, fetchFromGitHub, autoreconfHook }:
3 stdenv.mkDerivation rec {
4   pname = "corkscrew";
5   version = "2.0";
6   src = fetchFromGitHub {
7     owner = "bryanpkc";
8     repo = pname;
9     rev = "v${version}";
10     hash = "sha256-JiddvTbuOysenrVWGUEyKSzpCF1PJaYWQUdz3FuLCdw=";
11   };
13   nativeBuildInputs = [ autoreconfHook ];
15   meta = with lib; {
16     homepage = "https://github.com/bryanpkc/corkscrew";
17     description = "Tool for tunneling SSH through HTTP proxies";
18     license = lib.licenses.gpl2Only;
19     platforms = platforms.unix;
20     mainProgram = "corkscrew";
21   };