1
0
Fork 0

Update Haskell packages

This commit is contained in:
Malte 2023-06-10 14:51:04 +02:00
parent 3666a38aa5
commit d542cedbab
No known key found for this signature in database
2 changed files with 7 additions and 5 deletions

View file

@ -132,11 +132,11 @@
go gdb mpc_cli ncmpcpp shfmt astyle nodejs tasksh magic-wormhole nix-top
matrix-commander upterm lazygit gh ledger aqbanking;
inherit (pkgs.haskellPackages)
hledger hledger-ui hledger-web releaser cabal-fmt stack ghcid nixfmt
cabal-install pandoc hlint cabal2nix nix-derivation;
stack ghcid cabal-install pandoc hlint cabal2nix nix-derivation;
inherit (pkgs.unstableHaskellPackages)
haskell-language-server ghc-debug-client eventlog2html ghc-debug-brick
calligraphy;
haskell-language-server releaser ghc-debug-client eventlog2html
ghc-debug-brick nixfmt calligraphy cabal-fmt hledger hledger-ui
hledger-web;
mytmux = pkgs.writeShellScriptBin "mytmux" ''
session=$(${pkgs.tmux}/bin/tmux ls | grep -v attached | head -1 | cut -f1 -d:)
if [[ -n $session ]]; then

View file

@ -11,7 +11,9 @@ let
packages = p: builtins.attrValues (self.lib.selectHaskellPackages p);
extraDependencies = p: {
libraryHaskellDepends = builtins.attrValues
(myPkgs.makeHaskellScriptPackages p // selectHaskellPackages p);
(myPkgs.makeHaskellScriptPackages p // selectHaskellPackages p // {
inherit (p) ghc-debug-client;
});
};
};
in {