nixpkgs/pkgs/tools/misc/tldr/default.nix
Tobias Geerinckx-Rice 8b57eb8f17 tldr: use fetchFromGitHub; pkgconfig
pkgconfig is unrelated, but trivial (removes a harmless but
distracting error message) and doesn't warrant its own commit.
2016-01-18 03:04:56 +01:00

38 lines
937 B
Nix

{ stdenv, fetchFromGitHub, clang, curl, libzip, pkgconfig }:
let version = "1.1.0"; in
stdenv.mkDerivation {
name = "tldr-${version}";
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; {
inherit version;
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;
};
}