My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/libraries/libvorbis/default.nix

26 lines
670 B

{ lib, stdenv, fetchurl, libogg, pkg-config }:
stdenv.mkDerivation rec {
pname = "libvorbis";
version = "1.3.7";
src = fetchurl {
url = "http://downloads.xiph.org/releases/vorbis/${pname}-${version}.tar.xz";
sha256 = "0jwmf87x5sdis64rbv0l87mdpah1rbilkkxszipbzg128f9w8g5k";
};
outputs = [ "out" "dev" "doc" ];
nativeBuildInputs = [ pkg-config ];
propagatedBuildInputs = [ libogg ];
doCheck = true;
meta = with lib; {
description = "Vorbis audio compression reference implementation";
homepage = "https://xiph.org/vorbis/";
license = licenses.bsd3;
maintainers = [ maintainers.ehmry ];
platforms = platforms.all;
};
}