nixpkgs/pkgs/applications/misc/cheat/default.nix

31 lines
799 B
Nix
Raw Normal View History

2017-11-27 09:34:23 +00:00
{ stdenv, python3Packages, fetchFromGitHub }:
2016-09-13 10:36:00 +00:00
2017-09-12 08:37:57 +00:00
with python3Packages;
buildPythonApplication rec {
name = "${pname}-${version}";
pname = "cheat";
version = "2.3.1";
2016-09-13 10:36:00 +00:00
2017-11-27 09:34:23 +00:00
propagatedBuildInputs = [ docopt pygments ];
2016-09-13 10:36:00 +00:00
2017-11-27 09:34:23 +00:00
src = fetchFromGitHub {
owner = "chrisallenlane";
repo = "cheat";
rev = version;
sha256 = "1dcpjvbv648r8325qjf30m8b4cyrrjbzc2kvh40zy2mbjsa755zr";
2016-09-13 10:36:00 +00:00
};
2016-11-30 20:05:01 +00:00
# no tests available
doCheck = false;
2016-09-13 10:36:00 +00:00
2017-11-27 09:34:23 +00:00
postInstall = ''
install -D man1/cheat.1.gz $out/share/man/man1/cheat.1.gz
'';
2017-09-12 08:37:57 +00:00
meta = with stdenv.lib; {
2016-09-13 10:36:00 +00:00
description = "cheat allows you to create and view interactive cheatsheets on the command-line";
2017-09-12 08:37:57 +00:00
maintainers = with maintainers; [ mic92 ];
license = with licenses; [gpl3 mit];
homepage = https://github.com/chrisallenlane/cheat;
2016-09-13 10:36:00 +00:00
};
}