Skip to content

Instantly share code, notes, and snippets.

@joepie91

joepie91/.nix Secret

Created October 26, 2019 15:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joepie91/066856114ab45336da354272e5982b40 to your computer and use it in GitHub Desktop.
Save joepie91/066856114ab45336da354272e5982b40 to your computer and use it in GitHub Desktop.
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