haskellPackages.shellFor: fix spelling and grammar mistakes
Co-authored-by: maralorn <malte.brandy@maralorn.de>
This commit is contained in:
parent
17eee57642
commit
d26890fd15
|
@ -290,19 +290,18 @@ in package-set { inherit pkgs stdenv callPackage; } self // {
|
||||||
{ # Packages to create this development shell for. These are usually
|
{ # Packages to create this development shell for. These are usually
|
||||||
# your local packages.
|
# your local packages.
|
||||||
packages
|
packages
|
||||||
, # Whether or not to generated a Hoogle database for all the
|
, # Whether or not to generate a Hoogle database for all the
|
||||||
# dependencies.
|
# dependencies.
|
||||||
withHoogle ? false
|
withHoogle ? false
|
||||||
, ...
|
, ...
|
||||||
} @ args:
|
} @ args:
|
||||||
let
|
let
|
||||||
# A list of the packages we want to build a development shell for.
|
# A list of the packages we want to build a development shell for.
|
||||||
#
|
|
||||||
# This is a list of Haskell package derivations.
|
# This is a list of Haskell package derivations.
|
||||||
selected = packages self;
|
selected = packages self;
|
||||||
|
|
||||||
# This is a list of attribute sets, where the each attribute set
|
# This is a list of attribute sets, where each attribute set
|
||||||
# corresponds to the build inputs one of the packages input to shellFor.
|
# corresponds to the build inputs of one of the packages input to shellFor.
|
||||||
#
|
#
|
||||||
# Each attribute has keys like buildDepends, executableHaskellDepends,
|
# Each attribute has keys like buildDepends, executableHaskellDepends,
|
||||||
# testPkgconfigDepends, etc. The values for the keys of the attribute
|
# testPkgconfigDepends, etc. The values for the keys of the attribute
|
||||||
|
|
Loading…
Reference in New Issue