[settings/all]: add extraLibraries option (#210)

This commit is contained in:
Shivaraj B H 2023-12-14 00:13:03 +05:30 committed by GitHub
parent abea026d35
commit f28104504a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 0 deletions

View File

@ -1,5 +1,9 @@
# Revision history for haskell-flake
## Unreleased
- #210: Add `extraLibraries` to `settings` module.
## `0.4.0 (Aug 22, 2023`
- #162: **Completely new way to override Haskell packages**: removed `overrides` and `source-overrides`. Use `packages` to specify your source overrides; use `settings` to override individual packages in modular fashion (like NixOS modules). Additional changes include:

View File

@ -145,6 +145,13 @@ in
'';
impl = addBuildTools;
};
extraLibraries = {
type = types.listOf types.package;
description = ''
Extra library dependencies for the package.
'';
impl = addExtraLibraries;
};
extraTestToolDepends = {
type = types.listOf types.package;
description = ''