Haskellator/shell.nix

13 lines
233 B
Nix
Raw Permalink Normal View History

2024-11-17 14:34:27 +00:00
{ pkgs ? import (fetchTarball {
url = "https://github.com/NixOS/nixpkgs/archive/refs/tags/24.05.tar.gz";
}) {} }:
let
haskellator = pkgs.callPackage ./default.nix {};
in
pkgs.mkShell {
buildInputs = [
haskellator
];
}