gh-f: package as standalone command

This commit is contained in:
Loïc Reynier 2024-04-03 15:05:00 +00:00
parent 118829801a
commit fab46df763
No known key found for this signature in database
GPG Key ID: 6213A7D3F83C856A

View File

@ -2,11 +2,24 @@
, fetchFromGitHub
, stdenvNoCC
, makeWrapper
, gh
, fzf
, coreutils
, gawk
, gnused
, withBat ? false
, bat
}:
let
binPath = lib.makeBinPath ([
gh
fzf
coreutils
gawk
gnused
]
++ lib.optional withBat bat);
in
stdenvNoCC.mkDerivation rec {
pname = "gh-f";
version = "1.1.5";
@ -27,7 +40,7 @@ stdenvNoCC.mkDerivation rec {
'';
postFixup = ''
wrapProgram "$out/bin/gh-f" --prefix PATH : "${lib.makeBinPath [fzf bat coreutils]}"
wrapProgram "$out/bin/gh-f" --prefix PATH : "${binPath}"
'';
meta = with lib; {