2016-01-17 18:04:54 -08:00
|
|
|
{ stdenv, fetchFromGitHub, clang, curl, libzip, pkgconfig }:
|
2016-01-03 13:27:00 -08:00
|
|
|
|
2016-01-24 11:31:44 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2016-01-03 13:27:00 -08:00
|
|
|
name = "tldr-${version}";
|
2017-03-06 12:12:25 -08:00
|
|
|
version = "1.3.0";
|
2016-01-03 13:27:00 -08:00
|
|
|
|
2016-01-17 18:04:54 -08:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "tldr-pages";
|
2017-03-06 12:12:25 -08:00
|
|
|
repo = "tldr-cpp-client";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "10ylpiqc06p0qpma72vwksd7hd107s0vlx9c6s9rz4vc3i274lb6";
|
2016-01-03 13:27:00 -08:00
|
|
|
};
|
|
|
|
|
2016-01-17 17:46:23 -08:00
|
|
|
buildInputs = [ curl clang libzip ];
|
2016-01-17 18:04:54 -08:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2016-01-03 13:27:00 -08:00
|
|
|
|
2016-04-06 10:49:19 -07:00
|
|
|
installFlags = [ "PREFIX=$(out)" ];
|
2016-01-17 17:46:23 -08: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;
|
|
|
|
};
|
2016-01-03 13:27:00 -08:00
|
|
|
}
|