A fork of haskell.nix with a more efficient GHCJS 8.10 compiler
Go to file
2019-10-31 01:10:03 +00:00
.buildkite Reduce closure size of nix-tools (#178) 2019-06-15 07:18:06 +02:00
builder Considerate/overlays fixes (#262) 2019-10-22 17:15:10 +08:00
compiler Avoid missing maintainer issue on hydra (#270) 2019-10-24 23:17:23 +13:00
docs Add subDir argument to cleanGit (#280) 2019-10-30 15:09:45 +13:00
examples Reorg cardano/plutus examples. Move mkCacheModule (#265) 2019-10-23 09:46:24 +08:00
lib Add subDir argument to cleanGit (#280) 2019-10-30 15:09:45 +13:00
mk-local-hackage-repo Overlays (#261) 2019-10-21 20:07:58 +08:00
modules Make reinstallable if reinstallableLibGhc (#279) 2019-10-29 11:14:18 +13:00
nix-tools Overlays (#261) 2019-10-21 20:07:58 +08:00
nixpkgs tests: update nixpkgs pin to 19.09 channel (#260) 2019-10-21 20:11:31 +08:00
overlays Add haskellNixRoots and withInputs to help caching (#271) 2019-10-28 17:28:56 +13:00
patches Overlays (#261) 2019-10-21 20:07:58 +08:00
pkgs Overlays (#261) 2019-10-21 20:07:58 +08:00
scripts update-hackage: actually modify the hacakge.nix copy of the index state (#187) 2019-06-24 12:32:33 +02:00
test Overlays (#261) 2019-10-21 20:07:58 +08:00
.gitattributes Overlays (#261) 2019-10-21 20:07:58 +08:00
.gitignore More documentation (#179) 2019-06-15 07:11:52 +02:00
build.nix Add haskellNixRoots and withInputs to help caching (#271) 2019-10-28 17:28:56 +13:00
changelog.md shellFor: Use CABAL_CONFIG only with exactDeps = true (#255) 2019-10-13 19:43:17 +08:00
ci.nix Reorg cardano/plutus examples. Move mkCacheModule (#265) 2019-10-23 09:46:24 +08:00
config.nix Overlays (#261) 2019-10-21 20:07:58 +08:00
COPYING License Apache 2.0 2019-04-29 11:08:31 +08:00
default.nix Overlays (#261) 2019-10-21 20:07:58 +08:00
hackage-src.json Update Hackage and Stackage 2019-10-31 01:10:03 +00:00
mkdocs.yml docs: Add note about shellFor and CABAL_CONFIG (#247) 2019-09-24 08:53:20 +10:00
package-set.nix Overlays (#261) 2019-10-21 20:07:58 +08:00
README.org Update README.org 2019-10-25 09:30:02 +08:00
release.nix Add cross-compiled musl libc builds of tests (#157) 2019-07-02 18:25:40 +10:00
shell.nix Cross comp. & callCabalProjectToNix/callStackToNix (#202) 2019-07-13 22:13:15 +08:00
snapshots.nix Overlays (#261) 2019-10-21 20:07:58 +08:00
stackage-src.json Update Hackage and Stackage 2019-10-31 01:10:03 +00:00
test-ghcjs.nix Overlays (#261) 2019-10-21 20:07:58 +08:00
test-mingw32.nix Overlays (#261) 2019-10-21 20:07:58 +08:00
test-rpi.nix Overlays (#261) 2019-10-21 20:07:58 +08:00
test.nix Overlays (#261) 2019-10-21 20:07:58 +08:00

⚠️ The Overlay branch #261 was merged. haskell.nix is now an overlay and the dependency on iohk-nix was dropped. Please see the updated documentation! Once any remaining issues are resolved, this will mark the 1.0 release of haskell.nix.   warning

Alternative Haskell Infrastructure for Nixpkgs

https://badge.buildkite.com/d453edcd29bd2f8f3f3b32c9b7d6777a33773d9671c37a6ccc.svg?branch=master https://img.shields.io/buildkite/c8d5a20d3ff0f440f82adb9190b43c16c91e5e47e8adfa867a/master.svg?label=nightly%20updates

haskell.nix is an experimental new builder for Haskell packages.

It works by automatically translating your Cabal or Stack project and its dependencies into Nix code. It provides IFD (imports from derviation) functions that can minimize the amount of nix code you need to add.

For the documentation, see https://input-output-hk.github.io/haskell.nix/.

Quickstart

For cabal.project project add a default.nix:

{ pkgs ? import <nixpkgs> (import (builtins.fetchTarball https://github.com/input-output-hk/haskell.nix/archive/master.tar.gz))
, haskellCompiler ? "ghc865"
}:
  pkgs.haskell-nix.cabalProject {
    src = pkgs.haskell-nix.haskellLib.cleanGit { src = ./.; };
    ghc = pkgs.buildPackages.pkgs.haskell.compiler.${haskellCompiler};
  }

For a stack.yaml project add a default.nix:

{ pkgs ? import <nixpkgs> (import (builtins.fetchTarball https://github.com/input-output-hk/haskell.nix/archive/master.tar.gz))
}:
  pkgs.haskell-nix.stackProject {
    src = pkgs.haskell-nix.haskellLib.cleanGit { src = ./.; };
  }

To build the library component of a package in the project run:

nix build -f . your-package-name.components.library

To build an executable:

nix build -f . your-package-name.components.exes.your-exe-name

To open a shell for use with `cabal` run:

nix-shell -A shellFor
cabal new-build your-package-name
cabal new-repl your-package-name:library:your-package-name

Related repos

The haskell.nix repository contains the runtime system for building Haskell packages in Nix. It depends on other repos, which are:

  • nix-tools — provides the programs for generating Nix expressions from Haskell projects.
  • hackage.nix — the latest contents of the Hackage databases, converted to Nix expressions.
  • stackage.nix — all of the Stackage snapshots, converted to Nix expressions.

IRC Channel

Join the #haskell.nix channel on irc.freenode.net to get help or discuss the development of haskell.nix and nix-tools.