exemple
This commit is contained in:
17
haskell/default.nix
Normal file
17
haskell/default.nix
Normal 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 {
|
||||||
Reference in New Issue
Block a user