nixpkgs/pkgs/development/libraries/libogg/default.nix
R. RyanTM 282f8d8c73 libogg: 1.3.3 -> 1.3.4
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/libogg/versions
2019-10-22 09:52:54 +02:00

26 lines
740 B
Nix

{ stdenv, fetchurl }:
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" ];
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;
};
}