linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / libvorbis / default.nix
blob9fd3fc59ab392d0dbf4f4c808b5929a89426b188
1 { lib, stdenv, fetchurl, libogg, pkg-config }:
3 stdenv.mkDerivation rec {
4   name = "libvorbis-1.3.7";
6   src = fetchurl {
7     url = "http://downloads.xiph.org/releases/vorbis/${name}.tar.xz";
8     sha256 = "0jwmf87x5sdis64rbv0l87mdpah1rbilkkxszipbzg128f9w8g5k";
9   };
11   outputs = [ "out" "dev" "doc" ];
13   nativeBuildInputs = [ pkg-config ];
14   propagatedBuildInputs = [ libogg ];
16   doCheck = true;
18   meta = with lib; {
19     description = "Vorbis audio compression reference implementation";
20     homepage = "https://xiph.org/vorbis/";
21     license = licenses.bsd3;
22     maintainers = [ maintainers.ehmry ];
23     platforms = platforms.all;
24   };