2019-10-30 13:40:01 +00:00
|
|
|
{ stdenv, fetchFromGitHub, buildGoModule }:
|
2016-09-13 10:36:00 +00:00
|
|
|
|
2019-10-30 13:40:01 +00:00
|
|
|
buildGoModule rec {
|
2017-09-12 08:37:57 +00:00
|
|
|
pname = "cheat";
|
2020-03-25 08:20:40 +00:00
|
|
|
version = "3.8.0";
|
2016-09-13 10:36:00 +00:00
|
|
|
|
2017-11-27 09:34:23 +00:00
|
|
|
src = fetchFromGitHub {
|
2020-03-25 08:20:40 +00:00
|
|
|
owner = "cheat";
|
2017-11-27 09:34:23 +00:00
|
|
|
repo = "cheat";
|
|
|
|
rev = version;
|
2020-03-25 08:20:40 +00:00
|
|
|
sha256 = "062dlc54x9qwb3hsxp20h94dpwsa1nzpjln9cqmvwjhvp434l97r";
|
2016-09-13 10:36:00 +00:00
|
|
|
};
|
|
|
|
|
2019-10-30 13:40:01 +00:00
|
|
|
subPackages = [ "cmd/cheat" ];
|
2017-11-27 09:34:23 +00:00
|
|
|
|
2020-03-25 08:20:40 +00:00
|
|
|
modSha256 = "1is19qca5wgzya332rmpk862nnivxzgxchkllv629f5fwwdvdgmg";
|
2019-01-29 11:57:36 +00:00
|
|
|
|
2017-09-12 08:37:57 +00:00
|
|
|
meta = with stdenv.lib; {
|
2019-10-30 16:03:22 +00:00
|
|
|
description = "Create and view interactive cheatsheets on the command-line";
|
2017-09-12 08:37:57 +00:00
|
|
|
maintainers = with maintainers; [ mic92 ];
|
2019-01-29 11:57:36 +00:00
|
|
|
license = with licenses; [ gpl3 mit ];
|
2020-03-25 08:20:40 +00:00
|
|
|
inherit (src.meta) homepage;
|
2016-09-13 10:36:00 +00:00
|
|
|
};
|
|
|
|
}
|