Skip to content

README: some minor fixes #596

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 12, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.org
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
=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.
its dependencies into Nix code. It provides IFD (import from derivation)
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/.

Expand All @@ -21,10 +21,10 @@ For =cabal.project= project add a =default.nix=:

#+begin_src sh
let
# Fetch the latest haskell.nix and import its default.nix
# Fetch the latest haskell.nix and import its default.nix
haskellNix = import (builtins.fetchTarball https://github.com/input-output-hk/haskell.nix/archive/master.tar.gz) {};
# haskell.nix provides access to the nixpkgs pins which are used by our CI, hence
# you will be more likely to get cache hits when using these.
# you will be more likely to get cache hits when using these.
# But you can also just use your own, e.g. '<nixpkgs>'
nixpkgsSrc = haskellNix.sources.nixpkgs-1909;
# haskell.nix provides some arguments to be passed to nixpkgs, including some patches
Expand Down