tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
epic5: add patch for openssl 1.1
Robin Gloster
8 years ago
b703df2d
c7e74ff7
+8
-1
1 changed file
expand all
collapse all
unified
split
pkgs
applications
networking
irc
epic5
default.nix
+8
-1
pkgs/applications/networking/irc/epic5/default.nix
···
1
-
{ stdenv, fetchurl, openssl, ncurses, libiconv, tcl, coreutils }:
2
3
stdenv.mkDerivation rec {
4
name = "epic5-${version}";
···
12
# Darwin needs libiconv, tcl; while Linux build don't
13
buildInputs = [ openssl ncurses ]
14
++ stdenv.lib.optionals stdenv.isDarwin [ libiconv tcl ];
0
0
0
0
0
0
0
15
16
configureFlags = [ "--disable-debug" "--with-ipv6" ];
17
···
1
+
{ stdenv, fetchurl, openssl, ncurses, libiconv, tcl, coreutils, fetchpatch }:
2
3
stdenv.mkDerivation rec {
4
name = "epic5-${version}";
···
12
# Darwin needs libiconv, tcl; while Linux build don't
13
buildInputs = [ openssl ncurses ]
14
++ stdenv.lib.optionals stdenv.isDarwin [ libiconv tcl ];
15
+
16
+
patches = [
17
+
(fetchpatch {
18
+
url = "https://sources.debian.net/data/main/e/epic5/2.0.1-1/debian/patches/openssl-1.1.patch";
19
+
sha256 = "03bpsyv1sr5icajs2qkdvv8nnn6rz6yvvj7pgiq8gz9sbp6siyfv";
20
+
})
21
+
];
22
23
configureFlags = [ "--disable-debug" "--with-ipv6" ];
24