From 0ad3f6e23d2a74de93b8ffb17a8d4bb863a163a9 Mon Sep 17 00:00:00 2001 From: Anton-Latukha Date: Fri, 28 Dec 2018 16:26:37 +0200 Subject: [PATCH] libogg: add description & longDescription --- pkgs/development/libraries/libogg/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/libraries/libogg/default.nix b/pkgs/development/libraries/libogg/default.nix index 8bf62890fac4..71a8e528771b 100644 --- a/pkgs/development/libraries/libogg/default.nix +++ b/pkgs/development/libraries/libogg/default.nix @@ -11,6 +11,12 @@ stdenv.mkDerivation rec { outputs = [ "out" "dev" "doc" ]; meta = with stdenv.lib; { + description = "Media container library to manipulate Ogg files"; + longDescription = '' + Library to work with Ogg multimedia container format. + Ogg is flexible file storage and streaming format that supports + plethora of codecs. Open format free for anyone to use. + ''; homepage = https://xiph.org/ogg/; license = licenses.bsd3; maintainers = [ maintainers.ehmry ];