This file contains a summary of changes to Haskell.nix and nix-tools
that will impact users.
Jul 27, 2022
-
Removed reliance on
builtins.currentSystem
. It was used it to providepkgs.evalPackages
via an overlay that it used to run derivations used in imports from derivation (IFDs).These derivations are now run on
buildPackages
by default.Passsing
evalPackages
to a project function will change where all the derivations used in IFDs are run for that project (including shell tools): evalPackages = import nixpkgs haskellNix.nixpkgsArgs;Passing
evalSystem
instead will use create a suitablenixpkgs
usingpkgs.path
andpkgs.overlay
: evalSystem = "x86_64-linux"; or evalSystem = builtins.currentSystem;The
haskellLib.cleanGit
function is also affected by this change. If you are cross compiling and usingcleanGit
you should probably do something like: pkgs = import nixpkgs haskellNix.nixpkgsArgs; evalPackages = import nixpkgs (haskellNix.nixpkgsArgs // { system = evalSystem; }); p = pkgs.pkgsCross.mingwW64.haskell-nix.cabalProject { inherit evalPackages; src = evalPackages.haskell-nix.haskellLib.cleanGit { src = ./.; }; };
Feb 16, 2022
- Removed lookupSha256 argument from project functions.
Pass a
sha256map
instead. - Added better support for
repository
incabal.project
. These blocks should now work without the need for passingextra-hackages
andextra-hackage-tarballs
.
Aug 6, 2021
- Included dependencies of haskell.nix that were tracked in
nix/sources.json
as flake inputs (flake.lock
replacesnix/sources.json
). - Uses
flake-compat
to continue to provide a compatible interface for non flake projects.
Jul 23, 2021
source-repository-package
references incabal.project
files are now left as asource-repository-package
when calculating the theplan-nix
forcabalProject
based functions. This makes haskell.nix match the behaviour ofcabal
better. Materialized files for projects that usesource-repository-package
references will need to be updated.- Only planned components are included in a haskell.nix cabal project.
If cabal solver does not include the component in the
plan.json
file it will not be present inhsPkgs.pkg.components
. - When the same package occurs more than once in a plan.json file the latest version is picked by haskell.nix.
Apr 8, 2021
- Project arguments are now validated with the Nix module system. If unexpected argments are passed to a project function this may now result in an error.
Feb 22, 2021
- Add
.dwarf
to build any component with DWARF dubug info on linux (ghc >=8.10.2). - Pass
enableDWARF
toshellFor
for to get a shell where all the components are the.dwarf
ones.
Feb 18, 2021
ghcOptions
has been moved from package and is now a list of strings. old: packages.x.package.ghcOptions = "someGHCoption"; new: packages.x.ghcOptions = ["someGHCoption"]; To specify ghcOptions for all packages: ghcOptions = ["someGHCoption"]; For a single component: packages.x.compoents.library.ghcOptions = ["someGHCoption"];
Feb 8, 2021
- Removed older versions of haskell-language-server from custom-tools (0.8.0 is in hackage so we can still get that version).
Jan 14, 2021
- Added support for cross package refs (with a project). Relative directory references between packages within a project should now work.
- Added
includeSiblings
tocleanSourceWith
. Whentrue
it prevents thesubDir
arg from causing filtering of other directories. - Added
keepGitDir
tocleanGit
to allow.git
directory to be kept (useful for components that use thegithash
package).
Nov 26, 2020
- Renamed
otherShells
arg forshellFor
to `inputsFrom
Nov 25, 2020
- The
shellFor
makeConfigFiles
ghcWithHoogle
andghcWithPackages
functions have been removed fromproject.hsPkgs
. Instead access them fromproject
itself (e.g. changep.hsPkgs.shellFor
top.shellFor
). - The reflex-platform like
project.shells.ghc
has been removed. If needed, add something likep // { shells.ghc = p.shellFor {} }
toshell.nix
.
Nov 24, 2020
- Added
${targetPrefix}cabal
wrapper script for running cross compilers inshellFor
. otherShells
arg added toshellFor
.
Oct 31, 2020
- Passing
tools.hoogle
toshellFor
with a value suitable forhaskel-nix.tool
will use the specifiedhoogle
insideshellFor
. This allows for materialization ofhoogle
.
Oct 28, 2020
- Passing
compiler-nix-name
to project functions forstack.yaml
based projects now overrides the compiler used (was ignored before).
Sep 8, 2020
- Added the ability to generate coverage reports for packages and projects.
- Added the
doCoverage
module option that allows users to choose packages to enable coverage for. - Added a
doCoverage
flag to the component builder that outputs HPC information when coverage is enabled. - Added test for coverage.
July 21, 2020
- Removed
components.all
, usesymlinkJoin
on components.exes orshellFor
if you need a shell. - Added
components
argument toshellFor
.
July 21, 2020
- Added GHC 8.8.4 and replaced 8.8.3 in tests and as the ghc used to build nix-tools for stack projects.
July 20, 2020
- Changed
haskell-nix.roots
andp.roots
to single derivations.
July 8, 2020
- Removed
sources.nixpkgs-default
, usesources.nixpkgs
instead. - Removed
./nixpkgs
directory, use(import ./. {}).sources
or./nix/sources.nix
instead. - Removes V1 interface for details on how to fix old code see: https://github.com/input-output-hk/haskell.nix/issues/709
- Removed defaultCompilerNixName.
- cabalProject, cabalProject', hackage-project and hackage-package
now require a
compiler-nix-name
argument. haskell-nix.tool
and.tools
now require acompiler-nix-name
argument. New functionsp.tool
andp.tools
(where p is a project) do not. LikeshellFor { tools = ... }
they will use the compiler nix name from the project (including stack projects where it is derived from the resolver).haskell-nix.alex
andhaskell-nix.happy
have been removed. Usep.tool "alex" "3.2.5"
orshellFor { tools = { alex = "3.2.5"; } }
.haskell-nix.nix-tools
->haskell-nix.nix-tools.ghc883
(it includes the hpack exe now).haskell-nix.cabal-install
->p.tool "cabal" "3.2.0.0"
orshellFor { tools = { cabal = "3.2.0.0"; } }
haskell-nix.haskellNixRoots
->haskell-nix.roots ghc883
orp.roots
June 25, 2020
- Haddock docs are now built in their own derivation when needed (not as part
of the component build).
They should build automatically when something (such as
shellFor
) attempts to accesses the.doc
attribute of component.
December 27, 2019
- Fix overlays/bootstrap.nix to provide LLVM 6, not LLVM 5, to ghc-8.6.X compilers.
November 18, 2019
- Changed the
cleanSourceHaskell
to accept an attrset ofsrc
and (optional)name
parameters. This allows you to keep the source derivation name constant, so that your builds are always cached. Usage ofcleanSourceHaskell
will need to be updated.
October 12, 2019
shellFor
no longer setsCABAL_CONFIG
by default. This avoids surprising users, but means that Cabal may select a plan which is different to your Haskell.nix package set. If you would like the old behaviour, useshellFor { exactDeps = true; }
.
August 9, 2019
- Add the
haskellLib.collectComponents
function.
June 21, 2019
- Add
ghcWithPackages
andghcWithHoogle
to hsPkgs (documentation. - Benchmark components can now build successfully.
- Reduced the closure bloat of nix-tools, and added closure size limit to CI.
- Added more reference documentation and set up auto-generated documentation for Module Options.
- Miscellaneous bug fixes.
June 7, 2019
- Several additions to the documentation.
- More information about getting nix-tools, Haskell.nix, pinning.
- Updates the stack-to-nix and cabal-to-nix guides.
- Adds a section on development environments.
- Adds a little information about cross compilation.
- Adds a (partially complete) reference section (command line manuals, library reference).
- Symlinks the changelog into the documentation pages.
May 29, 2019
- Added
shellFor
function to package set.
May 28, 2019
- Added
snaphots
andhaskellPackages
attributes to the Haskell.nix top-level.
May 22, 2019
- Add the
cleanSourceHaskell
utility function to the Haskell.nix top-level.
May 21, 2019
- Add the
callCabalProjectToNix
function, which uses "import from derivation" (IFD) so that nix-tools doesn't need to be run manually. - The
hackage.nix
update process has changed, so that Cabal index state hashes are also included in the generated repo.
May 20, 2019
- Remove Travis CI in favour of Buildkite.
May 17, 2019
- Add the
callStackToNix
function, which uses "import from derivation" (IFD) so thatstack-to-nix
doesn't need to be run manually.
Mar 15, 2019
-
overlays
was renamed toextras
in #79 to prevent confusion between the notion of Nix overlays.Therefore
plan-pkgs
andstack-pkgs
as generated byplan-to-nix
andstack-to-nix
will exposeextras
instead ofoverlay
. SimilarlymkStackPkgSet
,mkPkgSet
andmkCabalProjectPkgSet
take apkg-def-extras
instead ofpkg-def-overlay
argument. If you are usingiohk-nix
, theiohk-overlay
was parameter was renamed toiohk-extras
.