git: Support $SSL_CERT_FILE

This commit is contained in:
Wout Mertens
2014-11-26 00:29:37 +01:00
parent 5c19521c6e
commit 272f2c365c
2 changed files with 20 additions and 2 deletions
@@ -24,7 +24,12 @@ stdenv.mkDerivation {
sha256 = "0mvgvr2hz25p49dhhizcw9591f2h17y2699mpmndis3kzap0c6zy";
};
patches = [ ./docbook2texi.patch ./symlinks-in-bin.patch ./cert-path.patch ];
patches = [
./docbook2texi.patch
./symlinks-in-bin.patch
./cert-path.patch
./ssl-cert-file.patch
];
buildInputs = [curl openssl zlib expat gettext cpio makeWrapper]
++ stdenv.lib.optionals withManual [ asciidoc texinfo xmlto docbook2x
@@ -142,6 +147,6 @@ stdenv.mkDerivation {
'';
platforms = stdenv.lib.platforms.all;
maintainers = with stdenv.lib.maintainers; [ simons the-kenny ];
maintainers = with stdenv.lib.maintainers; [ simons the-kenny wmertens ];
};
}