mirror of
https://github.com/Mesabloo/diagnose.git
synced 2024-11-22 17:52:15 +03:00
14 lines
174 B
Nix
14 lines
174 B
Nix
|
{ pkgs ? import ./nixpkgs-pinned.nix
|
||
|
, ghc ? pkgs.ghc
|
||
|
}:
|
||
|
|
||
|
pkgs.haskell.lib.buildStackProject {
|
||
|
inherit ghc;
|
||
|
|
||
|
buildInputs = with pkgs; [
|
||
|
|
||
|
];
|
||
|
|
||
|
name = "diagnose";
|
||
|
}
|