mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
33 lines
745 B
Nix
33 lines
745 B
Nix
{ stdenv, fetchFromGitHub
|
|
, buildGoModule, installShellFiles }:
|
|
|
|
buildGoModule rec {
|
|
pname = "cheat";
|
|
version = "3.10.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cheat";
|
|
repo = "cheat";
|
|
rev = version;
|
|
sha256 = "0indvycj972wng979mvia8mrb7bwdfay7wxq3lnj05qyxqafj5h2";
|
|
};
|
|
|
|
subPackages = [ "cmd/cheat" ];
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
postInstall = ''
|
|
installManPage doc/cheat.1
|
|
installShellCompletion scripts/cheat.{bash,fish,zsh}
|
|
'';
|
|
|
|
vendorSha256 = null;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Create and view interactive cheatsheets on the command-line";
|
|
maintainers = with maintainers; [ mic92 ];
|
|
license = with licenses; [ gpl3 mit ];
|
|
inherit (src.meta) homepage;
|
|
};
|
|
}
|