mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03:00
Merge pull request #11547 from sigma/corkscrew
add corkscrew networking tool
This commit is contained in:
commit
83c22f9c8f
16
pkgs/tools/networking/corkscrew/default.nix
Normal file
16
pkgs/tools/networking/corkscrew/default.nix
Normal file
@ -0,0 +1,16 @@
|
||||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "corkscrew-2.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://agroman.net/corkscrew/${name}.tar.gz";
|
||||
sha256 = "0d0fcbb41cba4a81c4ab494459472086f377f9edb78a2e2238ed19b58956b0be";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://agroman.net/corkscrew/;
|
||||
description = "A tool for tunneling SSH through HTTP proxies";
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
};
|
||||
}
|
@ -1159,6 +1159,8 @@ let
|
||||
|
||||
coreutils-prefixed = coreutils.override { withPrefix = true; };
|
||||
|
||||
corkscrew = callPackage ../tools/networking/corkscrew { };
|
||||
|
||||
cpio = callPackage ../tools/archivers/cpio { };
|
||||
|
||||
crackxls = callPackage ../tools/security/crackxls { };
|
||||
|
Loading…
Reference in New Issue
Block a user