ci-playground/algo2/radix-heap/stack-shell.nix

13 lines
216 B
Nix

{}:
let
pkgs = import ./nix/nixpkgs.nix {};
ghc = import ./nix/ghc.nix;
in
pkgs.haskell.lib.buildStackProject {
name = "radix-heap";
ghc = ghc pkgs;
buildInputs = with pkgs; [
zlib
];
}