From b170193185204615267930cc9ad3932562885f7d Mon Sep 17 00:00:00 2001 From: Claudio Bley Date: Thu, 5 Sep 2019 12:07:10 +0200 Subject: wtf: Add `infocmp` to PATH, fixes #68103 --- pkgs/applications/misc/wtf/default.nix | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'pkgs/applications/misc/wtf') diff --git a/pkgs/applications/misc/wtf/default.nix b/pkgs/applications/misc/wtf/default.nix index 1b4c4ac6a34..ec871dc3e56 100644 --- a/pkgs/applications/misc/wtf/default.nix +++ b/pkgs/applications/misc/wtf/default.nix @@ -1,6 +1,8 @@ { buildGoModule , fetchFromGitHub , lib +, makeWrapper +, ncurses }: buildGoModule rec { @@ -18,6 +20,8 @@ buildGoModule rec { buildFlagsArray = [ "-ldflags=-s -w -X main.version=${version}" ]; + nativeBuildInputs = [ makeWrapper ]; + # As per https://github.com/wtfutil/wtf/issues/501, one of the # dependencies can't be fetched, so vendored dependencies should # be used instead @@ -27,6 +31,10 @@ buildGoModule rec { runHook postBuild ''; + postInstall = '' + wrapProgram "$out/bin/wtf" --prefix PATH : "${ncurses.dev}/bin" + ''; + meta = with lib; { description = "The personal information dashboard for your terminal"; homepage = "https://wtfutil.com/"; -- cgit 1.4.1