mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 06:14:26 +03:00
cheat: init at 2.1.26
This commit is contained in:
parent
b32252ddfa
commit
6ace28610f
20
pkgs/applications/misc/cheat/default.nix
Normal file
20
pkgs/applications/misc/cheat/default.nix
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
{ python3Packages, fetchurl, lib }:
|
||||||
|
|
||||||
|
python3Packages.buildPythonApplication rec {
|
||||||
|
version = "2.1.26";
|
||||||
|
name = "cheat-${version}";
|
||||||
|
|
||||||
|
propagatedBuildInputs = with python3Packages; [ docopt pygments ];
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://pypi/c/cheat/${name}.tar.gz";
|
||||||
|
sha256 = "0yilm9ba6ll9wzh20gj3lg9mnc50q95m6sqmjp2vcghwgipdixpm";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "cheat allows you to create and view interactive cheatsheets on the command-line";
|
||||||
|
maintainers = with lib.maintainers; [ mic92 ];
|
||||||
|
license = with lib.licenses; [gpl3 mit];
|
||||||
|
homepage = "https://github.com/chrisallenlane/cheat";
|
||||||
|
};
|
||||||
|
}
|
@ -6281,6 +6281,8 @@ in
|
|||||||
|
|
||||||
cgdb = callPackage ../development/tools/misc/cgdb { };
|
cgdb = callPackage ../development/tools/misc/cgdb { };
|
||||||
|
|
||||||
|
cheat = callPackage ../applications/misc/cheat { };
|
||||||
|
|
||||||
chefdk = callPackage ../development/tools/chefdk {
|
chefdk = callPackage ../development/tools/chefdk {
|
||||||
ruby = ruby_2_0;
|
ruby = ruby_2_0;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user