nixpkgs/pkgs/tools/networking/corkscrew/default.nix

23 lines
627 B
Nix
Raw Normal View History

{ stdenv, fetchurl, automake }:
2015-12-08 04:42:33 +00:00
stdenv.mkDerivation rec {
name = "corkscrew-2.0";
src = fetchurl {
url = "http://agroman.net/corkscrew/${name}.tar.gz";
sha256 = "0d0fcbb41cba4a81c4ab494459472086f377f9edb78a2e2238ed19b58956b0be";
};
preConfigure = ''
ln -sf ${automake}/share/automake-*/config.sub config.sub
ln -sf ${automake}/share/automake-*/config.guess config.guess
'';
2015-12-08 04:42:33 +00:00
meta = with stdenv.lib; {
homepage = http://agroman.net/corkscrew/;
description = "A tool for tunneling SSH through HTTP proxies";
license = stdenv.lib.licenses.gpl2;
platforms = platforms.unix;
2015-12-08 04:42:33 +00:00
};
}