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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
649 B
Nix
Raw Normal View History

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