25a45fb222
At this point, I may be taking this idea too far, but what the heck?
8 lines
156 B
Nix
8 lines
156 B
Nix
let
|
|
pkgs = import <unstable> {};
|
|
in pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
(haskellPackages.ghcWithPackages (hpkgs: with hpkgs; [
|
|
]))
|
|
];
|
|
}
|