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 {
2018-01-28 15:25:44 +00:00
name = "libogg-1.3.3";
src = fetchurl {
url = "http://downloads.xiph.org/releases/ogg/${name}.tar.xz";
2018-01-28 15:25:44 +00:00
sha256 = "022wjlzn8fx7mfby4pcgyjwx8zir7jr7cizichh3jgaki8bwcgsg";
};
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;
};
}