28 lines
606 B
Nix
28 lines
606 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
autoreconfHook,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "corkscrew";
|
|
version = "2.0";
|
|
src = fetchFromGitHub {
|
|
owner = "bryanpkc";
|
|
repo = "corkscrew";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-JiddvTbuOysenrVWGUEyKSzpCF1PJaYWQUdz3FuLCdw=";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
meta = {
|
|
homepage = "https://github.com/bryanpkc/corkscrew";
|
|
description = "Tool for tunneling SSH through HTTP proxies";
|
|
license = lib.licenses.gpl2Only;
|
|
platforms = lib.platforms.unix;
|
|
mainProgram = "corkscrew";
|
|
};
|
|
})
|