about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/libogg/default.nix
blob: 8bf62890fac444fd9463b2f9dba4775910a8e489 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  name = "libogg-1.3.3";

  src = fetchurl {
    url = "http://downloads.xiph.org/releases/ogg/${name}.tar.xz";
    sha256 = "022wjlzn8fx7mfby4pcgyjwx8zir7jr7cizichh3jgaki8bwcgsg";
  };

  outputs = [ "out" "dev" "doc" ];

  meta = with stdenv.lib; {
    homepage = https://xiph.org/ogg/;
    license = licenses.bsd3;
    maintainers = [ maintainers.ehmry ];
    platforms = platforms.all;
  };
}