Files
to-hen/marcov-chain-monte-carlo/shell.nix

9 lines
125 B
Nix
Raw Normal View History

2026-03-14 07:22:31 +01:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
packages = [
(pkgs.ghc.withPackages (hs: [
hs.mcmc
]))
];
}