1
1
Fork 0
mirror of https://github.com/the-nix-way/dev-templates synced 2024-05-24 14:16:10 +02:00
github.com_the-nix-way_dev-.../haskell/flake.nix
2022-10-12 16:42:34 -05:00

30 lines
610 B
Nix

{
description = "A Nix-flake-based Haskell development environment";
inputs = {
flake-utils.url = "github:numtide/flake-utils";
nixpkgs.url = "github:NixOS/nixpkgs";
};
outputs =
{ self
, flake-utils
, nixpkgs
}:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
in
{
devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [ cabal-install ghc ];
shellHook = with pkgs; ''
${ghc}/bin/ghc --version
${cabal-install}/bin/cabal --version
'';
};
});
}