Merge pull request #11692 from sigma/fix/corkscrew-darwin
corkscrew: fix darwin build
This commit is contained in:
commit
1cfb0f3070
1 changed files with 6 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchurl }:
|
||||
{ stdenv, fetchurl, automake }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "corkscrew-2.0";
|
||||
|
@ -8,6 +8,11 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "0d0fcbb41cba4a81c4ab494459472086f377f9edb78a2e2238ed19b58956b0be";
|
||||
};
|
||||
|
||||
preConfigure = ''
|
||||
ln -sf ${automake}/share/automake-*/config.sub config.sub
|
||||
ln -sf ${automake}/share/automake-*/config.guess config.guess
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://agroman.net/corkscrew/;
|
||||
description = "A tool for tunneling SSH through HTTP proxies";
|
||||
|
|
Loading…
Reference in a new issue