commit 85ba29a899ff7ef7386f6c8d538ebbd257b27b5f
parent b20e6c603625fa7c3b43c8a8ab4297de1d0a7f2d
Author: mtmn <miro@haravara.org>
Date: Tue, 14 Apr 2026 23:11:20 +0200
void: install ghc
Diffstat:
1 file changed, 18 insertions(+), 6 deletions(-)
diff --git a/hosts/void/default.nix b/hosts/void/default.nix
@@ -64,6 +64,7 @@
hledger
hledger-iadd
rainfrog
+ tokyocabinet
];
vcs = with pkgs; [
@@ -91,6 +92,7 @@
statix
nix-diff
nix-output-monitor
+ niv
];
net = with pkgs; [
@@ -135,12 +137,6 @@
fnlfmt
]);
- javascript = with pkgs; [
- nodejs
- esbuild
- purescript
- ];
-
erlang =
(with pkgs.beam28Packages; [
erlang
@@ -150,10 +146,26 @@
gleam
]);
+ haskell =
+ (with pkgs.haskell.compiler; [
+ ghc9124
+ ])
+ ++ (with pkgs.haskellPackages; [
+ Cabal_3_16_1_0
+ stack
+ purescript
+ purenix
+ ])
+ ++ (with pkgs; [
+ cabal2nix
+ ]);
+
other = with pkgs; [
miniserve
babashka
feather
+ nodejs
+ esbuild
picard
rustup
];