teutat3s
9f0dcb8ed8
All checks were successful
continuous-integration/drone/pr Build is passing
rebuilding so much: it has nix as a dependency and won't find its hash in the binary cache if we override our nix version with the one from nixos-unstable. 22.11 has 2.11.1 which should be recent enough for us.
38 lines
787 B
Nix
38 lines
787 B
Nix
channels: final: prev: {
|
|
__dontExport = true; # overrides clutter up actual creations
|
|
|
|
inherit
|
|
(channels.latest)
|
|
cachix
|
|
dhall
|
|
discord
|
|
element-desktop
|
|
rage
|
|
nix-index
|
|
qutebrowser
|
|
alejandra
|
|
signal-desktop
|
|
starship
|
|
deploy-rs
|
|
tdesktop
|
|
arduino
|
|
arduino-cli
|
|
keycloak
|
|
gitea
|
|
;
|
|
|
|
haskellPackages =
|
|
prev.haskellPackages.override
|
|
(old: {
|
|
overrides = prev.lib.composeExtensions (old.overrides or (_: _: {})) (hfinal: hprev: let
|
|
version = prev.lib.replaceChars ["."] [""] prev.ghc.version;
|
|
in {
|
|
# same for haskell packages, matching ghc versions
|
|
inherit
|
|
(channels.latest.haskell.packages."ghc${version}")
|
|
haskell-language-server
|
|
;
|
|
});
|
|
});
|
|
}
|