lkl: break description into longDescription and a briefer descr

This commit is contained in:
Joachim Fasting 2017-05-23 23:55:55 +02:00
parent 8c8f40a128
commit e0b623a56d
No known key found for this signature in database
GPG Key ID: 7544761007FE4E08

View File

@ -40,7 +40,12 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
meta = with stdenv.lib; {
description = "LKL (Linux Kernel Library) aims to allow reusing the Linux kernel code as extensively as possible with minimal effort and reduced maintenance overhead";
description = "The Linux kernel as a library";
longDescription = ''
LKL (Linux Kernel Library) aims to allow reusing the Linux kernel code as
extensively as possible with minimal effort and reduced maintenance
overhead
'';
homepage = https://github.com/lkl/linux/;
platforms = [ "x86_64-linux" ]; # Darwin probably works too but I haven't tested it
license = licenses.gpl2;