From 12feb979234f3cbd7f7058d630a3b5d9b67d46f6 Mon Sep 17 00:00:00 2001 From: midchildan Date: Fri, 13 May 2022 13:36:36 +0900 Subject: [PATCH] nvfetcher: add missing dependency --- pkgs/development/haskell-modules/configuration-nix.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-nix.nix b/pkgs/development/haskell-modules/configuration-nix.nix index 4116cf51ebe..9ed09e6f81d 100644 --- a/pkgs/development/haskell-modules/configuration-nix.nix +++ b/pkgs/development/haskell-modules/configuration-nix.nix @@ -866,7 +866,7 @@ self: super: builtins.intersectAttrs super { buildTools = drv.buildTools or [ ] ++ [ pkgs.buildPackages.makeWrapper ]; postInstall = drv.postInstall or "" + '' wrapProgram "$out/bin/nvfetcher" --prefix 'PATH' ':' "${ - pkgs.lib.makeBinPath [ pkgs.nvchecker pkgs.nix-prefetch-git ] + pkgs.lib.makeBinPath [ pkgs.nvchecker pkgs.nix-prefetch ] }" ''; }) super.nvfetcher);