You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
{ 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 {
|