nixpkgs/pkgs/development/libraries/libogg/default.nix

26 lines
740 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
2014-09-24 15:07:18 +02:00
stdenv.mkDerivation rec {
2018-01-28 16:25:44 +01:00
name = "libogg-1.3.3";
src = fetchurl {
url = "http://downloads.xiph.org/releases/ogg/${name}.tar.xz";
2018-01-28 16:25:44 +01:00
sha256 = "022wjlzn8fx7mfby4pcgyjwx8zir7jr7cizichh3jgaki8bwcgsg";
};
outputs = [ "out" "dev" "doc" ];
2015-07-27 00:25:53 +02:00
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 ];
platforms = platforms.all;
};
}