tvl-depot/WORKSPACE
Vincent Ambo 6fbdf41b05 feat(build): Introduce pre-packaged GHC with dependencies via Nix
This uses the Nix infrastructure's Haskell setup to create a GHC
derivation that comes with all required Haskell packages, fetched &
built via Nix.

Downstream packages that want to make use of Haskell dependencies need
them to be added to this list.
2019-07-04 15:55:13 +01:00

52 lines
1.1 KiB
Python

# -*- mode: bazel; -*-
#
# This workspace configuration loads all Bazel rule sets that need to
# be available in the entire repository.
workspace(name = "tazjin_monorepo")
# SECTION: Nix
local_repository(
name = "io_tweag_rules_nixpkgs",
path = "third_party/bazel/rules_nixpkgs",
)
load(
"@io_tweag_rules_nixpkgs//nixpkgs:nixpkgs.bzl",
"nixpkgs_cc_configure",
"nixpkgs_package",
)
nixpkgs_cc_configure(
repositories = { "nixpkgs": "default.nix" },
)
# SECTION: Haskell
local_repository(
name = "io_tweag_rules_haskell",
path = "third_party/bazel/rules_haskell",
)
load(
"@io_tweag_rules_haskell//haskell:repositories.bzl",
"haskell_repositories"
)
haskell_repositories()
load(
"@io_tweag_rules_haskell//haskell:nixpkgs.bzl",
"haskell_register_ghc_nixpkgs",
)
# Register a Haskell toolchain with all required external
# dependencies.
#
# All dependencies need to be set up in thirdParty.ghc in default.nix
haskell_register_ghc_nixpkgs(
version = "8.6.5",
repositories = { "nixpkgs": "default.nix" },
attribute_path = "thirdParty.ghc",
)