7 lines
115 B
Nix
7 lines
115 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
pkgs.mkShell {
|
|
packages = [
|
|
(pkgs.ghc.withPackages (hs: [hs.random]))
|
|
];
|
|
}
|