mirror of
https://github.com/tensorflow/haskell.git
synced 2024-11-14 15:09:43 +01:00
19 lines
590 B
Nix
19 lines
590 B
Nix
{ghc ? null }:
|
|
|
|
let
|
|
# Use pinned packages
|
|
nixpkgs = with (builtins.fromJSON (builtins.readFile ./nix/src.json));
|
|
builtins.fetchTarball {
|
|
url = "https://github.com/${owner}/${repo}/archive/${rev}.tar.gz";
|
|
inherit sha256;
|
|
};
|
|
|
|
pkgs = import nixpkgs {};
|
|
in
|
|
pkgs.haskell.lib.buildStackProject {
|
|
# Either use specified GHC or use GHC 8.6.4 (which we need for LTS 13.13)
|
|
ghc = if isNull ghc then pkgs.haskell.compiler.ghc864 else ghc;
|
|
extraArgs = "--system-ghc";
|
|
name = "tf-env";
|
|
buildInputs = with pkgs; [ snappy zlib protobuf libtensorflow ];
|
|
}
|