forked from mirrors/nixpkgs
partimage: fix build with openssl-1.0.2
...by using patch from Arch (taken from Debian).
This commit is contained in:
parent
011f69992a
commit
1186bffb7f
|
@ -1,4 +1,4 @@
|
||||||
{stdenv, fetchurl, bzip2, zlib, newt, openssl, pkgconfig, slang
|
{stdenv, fetchurl, fetchpatch, bzip2, zlib, newt, openssl, pkgconfig, slang
|
||||||
, automake, autoconf, libtool, gettext
|
, automake, autoconf, libtool, gettext
|
||||||
}:
|
}:
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
|
@ -17,6 +17,12 @@ stdenv.mkDerivation {
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
./gentoos-zlib.patch
|
./gentoos-zlib.patch
|
||||||
|
(fetchpatch {
|
||||||
|
name = "no-SSLv2.patch";
|
||||||
|
url = "https://projects.archlinux.org/svntogit/community.git/plain/trunk"
|
||||||
|
+ "/use-SSLv3-by-default.patch?h=packages/partimage&id=7e95d1c6614e";
|
||||||
|
sha256 = "1zfixa6g1nb1hqfzn2wvyvxsr38gm7908zfml2iaqnwy6iz6jd8v";
|
||||||
|
})
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
|
Loading…
Reference in a new issue