2023-12-13 04:46:13 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
|
2015-12-08 04:42:33 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-07-09 14:22:50 +00:00
|
|
|
pname = "corkscrew";
|
|
|
|
version = "2.0";
|
2023-12-13 04:46:13 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "bryanpkc";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
|
|
|
hash = "sha256-JiddvTbuOysenrVWGUEyKSzpCF1PJaYWQUdz3FuLCdw=";
|
2015-12-08 04:42:33 +00:00
|
|
|
};
|
|
|
|
|
2023-12-13 04:46:13 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2015-12-13 22:31:00 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2023-12-13 04:46:13 +00:00
|
|
|
homepage = "https://github.com/bryanpkc/corkscrew";
|
2015-12-08 04:42:33 +00:00
|
|
|
description = "Tool for tunneling SSH through HTTP proxies";
|
2024-04-26 11:35:31 +00:00
|
|
|
license = lib.licenses.gpl2Only;
|
2016-08-02 17:50:55 +00:00
|
|
|
platforms = platforms.unix;
|
2024-02-11 02:19:15 +00:00
|
|
|
mainProgram = "corkscrew";
|
2015-12-08 04:42:33 +00:00
|
|
|
};
|
|
|
|
}
|
2023-12-13 04:46:13 +00:00
|
|
|
|