Merge pull request #124719 from berberman/nvfetcher

haskellPackages.nvfetcher: add to top-level
This commit is contained in:
Dennis Gosnell 2021-05-28 13:26:13 +09:00 committed by GitHub
commit aa21d85259
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 0 deletions

View File

@ -123,6 +123,8 @@ extra-packages:
package-maintainers:
abbradar:
- Agda
berberman:
- nvfetcher
bdesham:
- pinboard-notes-backup
cdepillabout:

View File

@ -7138,6 +7138,14 @@ in
nvchecker = with python3Packages; toPythonApplication nvchecker;
nvfetcher = with haskell.lib; overrideCabal (justStaticExecutables haskellPackages.nvfetcher) (drv: {
executableToolDepends = [ makeWrapper ];
postInstall = ''
wrapProgram $out/bin/nvfetcher \
--prefix PATH ":" "${nvchecker}/bin:${nix-prefetch-git}/bin"
'';
});
miller = callPackage ../tools/text/miller { };
milu = callPackage ../applications/misc/milu { };