Files

9 lines
125 B
Nix
Raw Permalink Normal View History

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