emacsPackages.melpaPackages: Ignore Git SSL certs

There are a number of derivations failing because we are lacking the
required certs.

fetchurl is already ignoring certs so I figured we'd do the same.
This commit is contained in:
adisbladis 2020-05-12 20:48:09 +01:00
parent 097eba0dc2
commit 88974f9712
No known key found for this signature in database
GPG key ID: 110BFAD44C6249B7

View file

@ -25,10 +25,12 @@ let
}
) {};
git = self.callPackage ({ fetchgit }:
fetchgit {
(fetchgit {
rev = commit;
inherit sha256 url;
}
}).overrideAttrs(_: {
GIT_SSL_NO_VERIFY = true;
})
) {};
bitbucket = self.callPackage ({ fetchhg }:
fetchhg {