2021-09-15 07:29:37 +00:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2005-01-19 21:48:45 +00:00
|
|
|
|
2014-09-24 13:07:18 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2021-09-15 07:29:37 +00:00
|
|
|
pname = "libogg";
|
|
|
|
version = "1.3.5";
|
2012-08-23 19:01:00 +00:00
|
|
|
|
2005-01-19 21:48:45 +00:00
|
|
|
src = fetchurl {
|
2021-09-15 07:29:37 +00:00
|
|
|
url = "http://downloads.xiph.org/releases/ogg/${pname}-${version}.tar.xz";
|
|
|
|
sha256 = "01b7050bghdvbxvw0gzv588fn4a27zh42ljpwzm4vrf8dziipnf4";
|
2010-08-01 14:33:43 +00:00
|
|
|
};
|
|
|
|
|
2016-08-29 00:30:01 +00:00
|
|
|
outputs = [ "out" "dev" "doc" ];
|
2015-07-26 22:25:53 +00:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2018-12-28 14:26:37 +00:00
|
|
|
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.
|
|
|
|
'';
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://xiph.org/ogg/";
|
2014-06-12 22:53:21 +00:00
|
|
|
license = licenses.bsd3;
|
2015-12-05 21:41:25 +00:00
|
|
|
maintainers = [ maintainers.ehmry ];
|
2014-06-12 22:53:21 +00:00
|
|
|
platforms = platforms.all;
|
2005-01-19 21:48:45 +00:00
|
|
|
};
|
|
|
|
}
|