2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv
|
2018-11-29 15:58:47 +00:00
|
|
|
, fetchFromGitHub
|
2020-12-02 16:23:54 +00:00
|
|
|
, unstableGitUpdater
|
2018-11-29 15:58:47 +00:00
|
|
|
, makeWrapper
|
|
|
|
, curl
|
|
|
|
, ncurses
|
|
|
|
, rlwrap
|
|
|
|
, xsel
|
|
|
|
}:
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "cht.sh";
|
2021-02-11 14:53:11 +00:00
|
|
|
version = "unstable-2021-01-31";
|
2018-11-29 15:58:47 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "chubin";
|
|
|
|
repo = "cheat.sh";
|
2021-02-11 14:53:11 +00:00
|
|
|
rev = "01e579176981356fb90d4aa58fea2d6c273a45a5";
|
|
|
|
sha256 = "0d98v67ajsc80i962myh0j4ph7bn3csk8y9jf8b5rfqd1zg737hb";
|
2018-11-29 15:58:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# 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"
|
2019-08-06 23:16:19 +01:00
|
|
|
|
|
|
|
# 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
|
|
|
|
|
2018-11-29 15:58:47 +00:00
|
|
|
wrapProgram "$out/bin/cht.sh" \
|
2021-01-15 09:19:50 +00:00
|
|
|
--prefix PATH : "${lib.makeBinPath [ curl rlwrap ncurses xsel ]}"
|
2018-11-29 15:58:47 +00:00
|
|
|
'';
|
|
|
|
|
2021-02-11 14:52:25 +00:00
|
|
|
passthru.updateScript = unstableGitUpdater {
|
|
|
|
url = "https://github.com/chubin/cheat.sh.git";
|
|
|
|
};
|
2020-12-02 16:23:54 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-11-29 15:58:47 +00:00
|
|
|
description = "CLI client for cheat.sh, a community driven cheat sheet";
|
|
|
|
license = licenses.mit;
|
2019-08-06 23:38:55 +01:00
|
|
|
maintainers = with maintainers; [ fgaz evanjs ];
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/chubin/cheat.sh";
|
2018-11-29 15:58:47 +00:00
|
|
|
};
|
|
|
|
}
|