Skip to content

Instantly share code, notes, and snippets.

@IQubic
Created August 27, 2019 18:57
{ pkgs ? import <nixpkgs> {}, compiler ? "ghc844" }:
pkgs.haskellPackages.shellFor {
packages = _: [ (pkgs.haskell.packages.${compiler}.callPackage ./default.nix {}) ];
buildInputs = with pkgs; [
cabal
caba2nix
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment