Merge pull request #53012 from Anton-Latukha/media-conteiner-descriptions

Couple of media conteiner descriptions
This commit is contained in:
worldofpeace 2018-12-29 23:34:51 -05:00 committed by GitHub
commit 755445f9de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 18 additions and 1 deletions

View File

@ -15,6 +15,11 @@ stdenv.mkDerivation rec {
preConfigure = "sh bootstrap.sh";
meta = {
description = "Abandoned library. Alternative lightweight Matroska muxer written for HandBrake";
longDescription = ''
Library was meant to be an alternative to the official libmatroska library.
It is written in plain C, and intended to be very portable.
'';
homepage = https://github.com/saintdev/libmkv;
license = stdenv.lib.licenses.gpl2;
maintainers = [ stdenv.lib.maintainers.wmertens ];

View File

@ -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 ];

View File

@ -25,8 +25,14 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
meta = {
description = "Abandoned library. Provides functions to read, create, and modify mp4 files";
longDescription = ''
MP4v2 library provides an API to work with mp4 files
as defined by ISO-IEC:14496-1:2001 MPEG-4 Systems.
This container format is derived from Apple's QuickTime format.
'';
homepage = https://code.google.com/archive/p/mp4v2/;
maintainers = [ ];
maintainers = [ lib.maintainers.Anton-Latukha ];
platforms = lib.platforms.unix;
license = lib.licenses.mpl11;
};