Merge pull request #56599 from andir/tinc-openssl-102r-fix
tinc_pre: fix error after openssl upgrade
This commit is contained in:
commit
5e3b160b5c
1 changed files with 9 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchgit, autoreconfHook, texinfo, ncurses, readline, zlib, lzo, openssl }:
|
||||
{ stdenv, fetchgit, fetchpatch, autoreconfHook, texinfo, ncurses, readline, zlib, lzo, openssl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "tinc-${version}";
|
||||
|
@ -12,6 +12,14 @@ stdenv.mkDerivation rec {
|
|||
|
||||
outputs = [ "out" "man" "info" ];
|
||||
|
||||
patches = [
|
||||
(fetchpatch {
|
||||
name = "tinc-openssl-1.0.2r.patch";
|
||||
url = "http://git.tinc-vpn.org/git/browse?p=tinc;a=patch;h=2b0aeec02d64bb4724da9ff1dbc19b7d35d7c904";
|
||||
sha256 = "0kidzlmgl0cin4g54ygcxa0jbq9vwlk3dyq5f65nkjd8yvayfzi8";
|
||||
})
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook texinfo ];
|
||||
buildInputs = [ ncurses readline zlib lzo openssl ];
|
||||
|
||||
|
|
Loading…
Reference in a new issue