mirror of
https://github.com/NorfairKing/autodocodec.git
synced 2024-11-26 08:01:33 +03:00
14 lines
368 B
Nix
14 lines
368 B
Nix
let
|
|
sources = import ./nix/sources.nix;
|
|
pkgs = import ./nix/pkgs.nix { inherit sources; };
|
|
pre-commit = import ./nix/pre-commit.nix { inherit sources; };
|
|
in
|
|
pkgs.haskell.lib.buildStackProject {
|
|
name = "autodocodec-shell";
|
|
buildInputs = with pkgs; [
|
|
(import sources.niv { }).niv
|
|
zlib
|
|
] ++ pre-commit.tools;
|
|
shellHook = pre-commit.run.shellHook;
|
|
}
|