fix(devshell): pin pycurl to stable, disable nvfetcher

This commit is contained in:
Infinidoge 2022-04-06 17:56:00 -04:00
parent cdd153b39d
commit 3d14f49d4b
2 changed files with 19 additions and 6 deletions

View file

@ -23,6 +23,19 @@ channels: final: prev: {
spice-gtk
;
inherit (channels.stable)
nvfetcher
;
# https://github.com/NixOS/nixpkgs/issues/167579
python39Packages = prev.python39Packages.override
(old: {
overrides = prev.lib.composeExtensions (old.overrides or (_: _: { }))
(py39final: py39prev: {
inherit (channels.stable.python39Packages) pycurl;
});
});
haskellPackages = prev.haskellPackages.override
(old: {
overrides = prev.lib.composeExtensions (old.overrides or (_: _: { })) (hfinal: hprev: