Files
nix-public-expressions/haskell/default.nix
2017-04-09 13:15:16 +02:00

18 lines
268 B
Nix

{ nixpkgs ? import <nixpkgs> { }
, ghc ? nixpkgs.ghc
}:
with nixpkgs;
let
R = pkgs.R.override { enableStrictBarrier = true; };
in
haskell.lib.buildStackProject {
name = "HaskellR";
buildInputs = [ R zeromq zlib ];
inherit ghc;
}
#stdenv.mkDerivation rec {