mirror of
https://github.com/infinisil/all-hies.git
synced 2024-11-22 22:27:42 +03:00
26 lines
368 B
Nix
26 lines
368 B
Nix
{ pkgs ? import ./nixpkgs.nix
|
|
}:
|
|
|
|
let
|
|
ghcWithPkgs = pkgs.haskellPackages.ghcWithPackages (p: with p; [
|
|
directory
|
|
filepath
|
|
process
|
|
http-client
|
|
http-client-tls
|
|
aeson
|
|
regex-applicative
|
|
haskeline
|
|
stack2nix
|
|
cabal-install
|
|
]);
|
|
in
|
|
|
|
pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
ghcWithPkgs
|
|
git
|
|
nix-prefetch-scripts
|
|
];
|
|
}
|