nixpkgs-suyu/pkgs/tools/misc/tldr/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
1 KiB
Nix
Raw Normal View History

2022-04-14 06:20:00 +02:00
{ lib, stdenv, fetchFromGitHub, curl, libzip, pkg-config, installShellFiles }:
stdenv.mkDerivation rec {
pname = "tldr";
version = "1.4.3";
src = fetchFromGitHub {
owner = "tldr-pages";
2017-03-06 21:12:25 +01:00
repo = "tldr-cpp-client";
rev = "v${version}";
sha256 = "sha256-ZNUW2PebRUDLcZ2/dXClXqf8NUjgw6N73h32PJ8iwmM=";
};
2018-08-03 06:43:43 +02:00
buildInputs = [ curl libzip ];
2022-04-14 06:20:00 +02:00
nativeBuildInputs = [ pkg-config installShellFiles ];
makeFlags = ["CC=${stdenv.cc.targetPrefix}cc" "LD=${stdenv.cc.targetPrefix}cc" "CFLAGS="];
2018-08-03 04:36:24 +02:00
2016-04-06 19:49:19 +02:00
installFlags = [ "PREFIX=$(out)" ];
2016-01-18 02:46:23 +01:00
2022-04-14 06:20:00 +02:00
postInstall = ''
installShellCompletion --cmd tldr autocomplete/complete.{bash,fish,zsh}
'';
meta = with lib; {
2016-01-18 02:46:23 +01:00
description = "Simplified and community-driven man pages";
longDescription = ''
tldr pages gives common use cases for commands, so you don't need to hunt
through a man page for the correct flags.
'';
homepage = "http://tldr-pages.github.io";
2016-01-18 02:46:23 +01:00
license = licenses.mit;
2018-08-03 04:36:24 +02:00
maintainers = with maintainers; [ taeer carlosdagos ];
platforms = platforms.all;
2016-01-18 02:46:23 +01:00
};
}