Files

7 lines
115 B
Nix
Raw Permalink Normal View History

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