diagnose/nix/stack.nix

14 lines
174 B
Nix
Raw Normal View History

2022-01-02 12:34:45 +03:00
{ pkgs ? import ./nixpkgs-pinned.nix
, ghc ? pkgs.ghc
}:
pkgs.haskell.lib.buildStackProject {
inherit ghc;
buildInputs = with pkgs; [
];
name = "diagnose";
}