python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / networking / corkscrew / default.nix
blob3aacb0da6a2e5b3394d10f69915a2597b103abaf
1 { lib, stdenv, fetchurl, automake }:
3 stdenv.mkDerivation rec {
4   pname = "corkscrew";
5   version = "2.0";
7   src = fetchurl {
8     url = "http://agroman.net/corkscrew/corkscrew-${version}.tar.gz";
9     sha256 = "0d0fcbb41cba4a81c4ab494459472086f377f9edb78a2e2238ed19b58956b0be";
10   };
12   preConfigure = ''
13     ln -sf ${automake}/share/automake-*/config.sub config.sub
14     ln -sf ${automake}/share/automake-*/config.guess config.guess
15   '';
17   meta = with lib; {
18     homepage    = "http://agroman.net/corkscrew/";
19     description = "A tool for tunneling SSH through HTTP proxies";
20     license = lib.licenses.gpl2;
21     platforms = platforms.unix;
22   };