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

26 lines
740 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
2014-09-24 06:07:18 -07:00
stdenv.mkDerivation rec {
name = "libogg-1.3.4";
src = fetchurl {
url = "http://downloads.xiph.org/releases/ogg/${name}.tar.xz";
sha256 = "1zlk33vxvxr0l9lhkbhkdwvylw96d2n0fnd3d8dl031hph9bqqy1";
};
outputs = [ "out" "dev" "doc" ];
2015-07-26 15:25:53 -07: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;
};
}