Files
to-hen/machine-learning-in-haskell/shell.nix

7 lines
115 B
Nix
Raw Normal View History

2025-02-04 23:48:50 +01:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
packages = [
(pkgs.ghc.withPackages (hs: [hs.random]))
];
}