cryptoids/stack.nix
2018-02-20 18:55:00 +01:00

11 lines
201 B
Nix

{ ghc, nixpkgs ? (import <nixpkgs> {}) }:
let
inherit (nixpkgs) haskell pkgs;
in haskell.lib.buildStackProject {
inherit ghc;
name = ''stackenv-cryptoids'';
buildInputs = with pkgs;
[];
}