teutat3s
bf581d1e9c
nix-dram as default nix binary isn't worth the maintenance work anymore, CI builds started failing because of it: https://ci.b12f.io/pub-solar/os/533/1/2 Automatic builds still happen each night and can be checked in our fork of nix-dram: https://github.com/pub-solar/nix-dram/actions Users of nix-dram can continue to use it via devshells or nix run github:dramforever/nix-dram -- --version
36 lines
757 B
Nix
36 lines
757 B
Nix
channels: final: prev: {
|
|
|
|
__dontExport = true; # overrides clutter up actual creations
|
|
|
|
inherit (channels.latest)
|
|
cachix
|
|
dhall
|
|
discord
|
|
element-desktop
|
|
rage
|
|
nixpkgs-fmt
|
|
qutebrowser
|
|
signal-desktop
|
|
starship
|
|
deploy-rs
|
|
nix
|
|
|
|
tdesktop
|
|
arduino
|
|
arduino-cli
|
|
;
|
|
|
|
|
|
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;
|
|
});
|
|
});
|
|
}
|