-
-
Save joepie91/066856114ab45336da354272e5982b40 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nixpkgs.overlays = [ | |
(self: super: { | |
python3 = super.python3.override { | |
packageOverrides = python-self: python-super: { | |
pycurl = python-super.pycurl.overrideAttrs (oldAttrs: { | |
doCheck = false; | |
}); | |
}; | |
}; | |
}) | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment