nixpkgs/pkgs/tools/misc/tldr/default.nix
Tobias Geerinckx-Rice 9fb8020e4e Add version attribute where maintainers |= nckx
This will probably be mandatory soon, and is a step in the right
direction. Removes the deprecated meta.version, and move some meta
sections to the end of the file where I should have put them in
the first place.
2016-01-25 17:35:21 +01:00

37 lines
915 B
Nix

{ 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";
};
buildInputs = [ curl clang libzip ];
nativeBuildInputs = [ pkgconfig ];
preConfigure = ''
cd src
'';
installPhase = ''
install -Dm755 {.,$out/bin}/tldr
'';
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;
};
}