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

26 lines
569 B
Nix
Raw Normal View History

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