mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
Move some excess description to longDescription
This commit is contained in:
parent
14c8a6f32d
commit
464f327aa6
|
@ -12,7 +12,12 @@ stdenv.mkDerivation rec {
|
|||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "a plugin for KTextEditor (Kate, KDevelop, among others) that provides basic code completion for the Go programming language. Uses gocode as completion provider";
|
||||
description = "Go code completion for Kate, KDevelop and others";
|
||||
longDescription = ''
|
||||
A plugin for KTextEditor (Kate, KDevelop, among others) that provides
|
||||
basic code completion for the Go programming language.
|
||||
Uses gocode as completion provider.
|
||||
'';
|
||||
homepage = https://bitbucket.org/lucashnegri/kgocode/overview;
|
||||
maintainers = with maintainers; [ qknight ];
|
||||
license = licenses.gpl3Plus;
|
||||
|
|
|
@ -47,7 +47,11 @@ stdenv.mkDerivation rec {
|
|||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://www.accelio.org/;
|
||||
description = "a high-performance asynchronous reliable messaging and RPC library optimized for hardware acceleration";
|
||||
description = "High-performance messaging and RPC library";
|
||||
longDescription = ''
|
||||
A high-performance asynchronous reliable messaging and RPC library
|
||||
optimized for hardware acceleration.
|
||||
'';
|
||||
license = licenses.bsd3;
|
||||
platforms = with platforms; linux ++ freebsd;
|
||||
maintainers = with maintainers; [ wkennington ];
|
||||
|
|
|
@ -10,7 +10,11 @@ stdenv.mkDerivation rec {
|
|||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://www.canonware.com/jemalloc/index.html;
|
||||
description = "a general purpose malloc(3) implementation that emphasizes fragmentation avoidance and scalable concurrency support";
|
||||
description = "General purpose malloc(3) implementation";
|
||||
longDescription = ''
|
||||
malloc(3)-compatible memory allocator that emphasizes fragmentation
|
||||
avoidance and scalable concurrency support.
|
||||
'';
|
||||
license = licenses.bsd2;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ wkennington ];
|
||||
|
|
|
@ -15,7 +15,11 @@ stdenv.mkDerivation rec {
|
|||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "http://ttylog.sourceforg.net";
|
||||
description = "a serial port logger which can be used to print everything to stdout that comes from a serial device";
|
||||
description = "Simple serial port logger";
|
||||
longDescription = ''
|
||||
A serial port logger which can be used to print everything to stdout
|
||||
that comes from a serial device.
|
||||
'';
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ wkennington ];
|
||||
|
|
Loading…
Reference in a new issue