1
1
mirror of https://github.com/nmattia/niv.git synced 2024-11-29 09:42:35 +03:00

Merge pull request #160 from cprussin/cprussin/fix-custom-sources-option-docs

Rename sourcesFile to sourcesJson
This commit is contained in:
Nicolas Mattia 2019-12-09 18:54:53 +01:00 committed by GitHub
commit e5a3c9aa0c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 4 deletions

View File

@ -1,5 +1,9 @@
# Changelog
## [0.2.8] 2019-12-00
## Changed
* Fixed message in `niv init` with custom `sources.json`
## [0.2.7] 2019-12-08
## Added
* Support for custom path `sources.json` with `--sources-json`

View File

@ -201,10 +201,10 @@ niv - dependency manager for Nix projects
version: 0.2.7
Usage: niv [-s|--sources-json FILE] COMMAND
Usage: niv [-s|--sources-file FILE] COMMAND
Available options:
-s,--sources-json FILE Use FILE instead of nix/sources.json
-s,--sources-file FILE Use FILE instead of nix/sources.json
-h,--help Show this help text
Available commands:

View File

@ -69,7 +69,7 @@ cli = do
]
parseFindSourcesJson =
AtPath <$> Opts.strOption (
Opts.long "sources-json" <>
Opts.long "sources-file" <>
Opts.short 's' <>
Opts.metavar "FILE" <>
Opts.help "Use FILE instead of nix/sources.json"
@ -154,7 +154,7 @@ cmdInit = do
, "You are using a custom path for sources.json."
]
, " You need to configure the sources.nix to use " <> tbold (T.pack fp) <> ":"
, tbold " import sources.nix { sourcesJson = PATH ; }; "
, tbold " import sources.nix { sourcesFile = PATH ; }; "
, T.unwords
[ " where", tbold "PATH", "is the relative path from sources.nix to"
, tbold (T.pack fp) <> "." ]