mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 16:45:49 +01:00
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:
parent
097eba0dc2
commit
88974f9712
1 changed files with 4 additions and 2 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue