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

7 lines
115 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
packages = [
(pkgs.ghc.withPackages (hs: [hs.random]))
];
}