9 stdenv.mkDerivation rec {
14 url = "https://downloads.xiph.org/releases/vorbis/${pname}-${version}.tar.xz";
15 sha256 = "0jwmf87x5sdis64rbv0l87mdpah1rbilkkxszipbzg128f9w8g5k";
24 nativeBuildInputs = [ pkg-config ];
25 propagatedBuildInputs = [ libogg ];
29 # strip -mno-ieee-fp flag from configure and configure.ac when using
30 # clang as the flag is not recognized by the compiler
31 preConfigure = lib.optionalString (stdenv.cc.isClang or false) ''
32 sed s/\-mno\-ieee\-fp// -i {configure,configure.ac}
36 description = "Vorbis audio compression reference implementation";
37 homepage = "https://xiph.org/vorbis/";
38 license = licenses.bsd3;
39 maintainers = [ maintainers.ehmry ];
40 platforms = platforms.all;