This commit is contained in:
2017-03-03 20:16:40 +01:00
parent 2bba4419d3
commit cee04bfed6

17
haskell/default.nix Normal file
View File

@@ -0,0 +1,17 @@
{ 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 {