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

37 lines
915 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, clang, curl, libzip, pkgconfig }:
stdenv.mkDerivation rec {
name = "tldr-${version}";
version = "1.1.0";
src = fetchFromGitHub {
sha256 = "0hxkrzp5njhy7c19v8i3svcb148f1jni7dlv36gc1nmcrz5izsiz";
rev = "v${version}";
repo = "tldr-cpp-client";
owner = "tldr-pages";
};
2016-01-18 01:46:23 +00:00
buildInputs = [ curl clang libzip ];
nativeBuildInputs = [ pkgconfig ];
preConfigure = ''
cd src
'';
installPhase = ''
install -Dm755 {.,$out/bin}/tldr
'';
2016-01-18 01:46:23 +00:00
meta = with stdenv.lib; {
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;
license = licenses.mit;
maintainers = with maintainers; [ taeer nckx ];
platforms = platforms.linux;
};
}