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.
18 lines
268 B
Nix
18 lines
268 B
Nix
8 years ago
|
{ 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 {
|