Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
63 lines
1.4 KiB
Nix
63 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
unstableGitUpdater,
|
|
makeWrapper,
|
|
curl,
|
|
ncurses,
|
|
rlwrap,
|
|
xsel,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "cht.sh";
|
|
version = "0-unstable-2025-08-08";
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "chubin";
|
|
repo = "cheat.sh";
|
|
rev = "b714a5f0d56427924a7871f083fd05e7ede6b0e4";
|
|
sha256 = "JkqHxHgs7gUk511CSJ/sLEBWCAYig1lqfslhABDNMGI=";
|
|
};
|
|
|
|
# Fix ".cht.sh-wrapped" in the help message
|
|
postPatch = "substituteInPlace share/cht.sh.txt --replace '\${0##*/}' cht.sh";
|
|
|
|
installPhase = ''
|
|
install -m755 -D share/cht.sh.txt "$out/bin/cht.sh"
|
|
|
|
# install shell completion files
|
|
mkdir -p $out/share/bash-completion/completions $out/share/zsh/site-functions
|
|
mv share/bash_completion.txt $out/share/bash-completion/completions/cht.sh
|
|
cp share/zsh.txt $out/share/zsh/site-functions/_cht
|
|
|
|
wrapProgram "$out/bin/cht.sh" \
|
|
--prefix PATH : "${
|
|
lib.makeBinPath [
|
|
curl
|
|
rlwrap
|
|
ncurses
|
|
xsel
|
|
]
|
|
}"
|
|
'';
|
|
|
|
passthru.updateScript = unstableGitUpdater {
|
|
url = "https://github.com/chubin/cheat.sh.git";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "CLI client for cheat.sh, a community driven cheat sheet";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [
|
|
fgaz
|
|
evanjs
|
|
];
|
|
homepage = "https://github.com/chubin/cheat.sh";
|
|
mainProgram = "cht.sh";
|
|
};
|
|
}
|