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

18 lines
409 B
Nix
Raw Normal View History

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