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

20 lines
446 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
2014-09-24 13:07:18 +00:00
stdenv.mkDerivation rec {
name = "libogg-1.3.2";
src = fetchurl {
url = "http://downloads.xiph.org/releases/ogg/${name}.tar.xz";
sha256 = "16z74q422jmprhyvy7c9x909li8cqzmvzyr8cgbm52xcsp6pqs1z";
};
outputs = [ "out" "dev" "doc" ];
2015-07-26 22:25:53 +00:00
meta = with stdenv.lib; {
homepage = https://xiph.org/ogg/;
license = licenses.bsd3;
maintainers = [ maintainers.ehmry ];
platforms = platforms.all;
};
}