nixpkgs/pkgs/development/libraries/libogg/default.nix
Tuomas Tynkkynen a17216af4c treewide: Shuffle outputs
Make either 'bin' or 'out' the first output.
2016-08-29 14:49:51 +03:00

20 lines
445 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" "dev" "doc" ];
meta = with stdenv.lib; {
homepage = http://xiph.org/ogg/;
license = licenses.bsd3;
maintainers = [ maintainers.ehmry ];
platforms = platforms.all;
};
}