nixpkgs/pkgs/development/libraries/libogg/default.nix
Emery Hemingway 2b6dcdfcd0 Rename 'emery' maintainer handle to 'ehmry', fixes #11493
Communication happens on Github so names should be consistent.
2015-12-05 23:06:20 +01:00

20 lines
439 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libogg-1.3.2";
src = fetchurl {
url = "http://downloads.xiph.org/releases/ogg/${name}.tar.xz";
sha256 = "16z74q422jmprhyvy7c9x909li8cqzmvzyr8cgbm52xcsp6pqs1z";
};
outputs = [ "out" "doc" ];
meta = with stdenv.lib; {
homepage = http://xiph.org/ogg/;
license = licenses.bsd3;
maintainers = [ maintainers.ehmry ];
platforms = platforms.all;
};
}