about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/misc/cheat/default.nix
blob: 41660bc7f2b07a05b767527864ab5049580fb59f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ stdenv, python3, fetchFromGitHub }:

with python3.pkgs;
buildPythonApplication rec {
  name = "${pname}-${version}";
  pname = "cheat";
  version = "2.5.1";

  propagatedBuildInputs = [ docopt pygments termcolor ];

  src = fetchFromGitHub {
    owner = "chrisallenlane";
    repo = "cheat";
    rev = version;
    sha256 = "1i543hvg1yizamfd83bawflfcb500hvc72i59ikck8j1hjk50hsl";
  };
  # no tests available
  doCheck = false;

  postInstall = ''
    install -D man1/cheat.1.gz $out/share/man/man1/cheat.1.gz
    mv $out/${python3.sitePackages}/etc $out/
    mv $out/${python3.sitePackages}/usr/share/* $out/share/
    rm -r $out/${python3.sitePackages}/usr
  '';

  makeWrapperArgs = [
    "--suffix" "CHEAT_PATH" ":" "$out/share/cheat"
  ];

  meta = with stdenv.lib; {
    description = "cheat allows you to create and view interactive cheatsheets on the command-line";
    maintainers = with maintainers; [ mic92 ];
    license = with licenses; [ gpl3 mit ];
    homepage = https://github.com/chrisallenlane/cheat;
  };
}