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

25 lines
562 B
Nix
Raw Normal View History

{ stdenv, fetchurl, libogg, pkgconfig }:
2014-09-24 17:07:18 +04:00
stdenv.mkDerivation rec {
2015-03-26 02:02:24 +03:00
name = "libvorbis-1.3.5";
2014-09-24 17:07:18 +04:00
src = fetchurl {
url = "http://downloads.xiph.org/releases/vorbis/${name}.tar.xz";
2015-03-26 02:02:24 +03:00
sha256 = "1lg1n3a6r41492r7in0fpvzc7909mc5ir9z0gd3qh2pz4yalmyal";
};
2015-07-27 01:25:53 +03:00
outputs = [ "out" "doc" ];
nativeBuildInputs = [ pkgconfig ];
propagatedBuildInputs = [ libogg ];
doCheck = true;
meta = with stdenv.lib; {
homepage = http://xiph.org/vorbis/;
license = licenses.bsd3;
maintainers = [ maintainers.emery ];
platforms = platforms.all;
};
}