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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
768 B
Nix
Raw Normal View History

2021-09-15 07:29:37 +00:00
{ lib, stdenv, fetchurl }:
2014-09-24 13:07:18 +00:00
stdenv.mkDerivation rec {
2021-09-15 07:29:37 +00:00
pname = "libogg";
version = "1.3.5";
src = fetchurl {
2021-09-15 07:29:37 +00:00
url = "http://downloads.xiph.org/releases/ogg/${pname}-${version}.tar.xz";
sha256 = "01b7050bghdvbxvw0gzv588fn4a27zh42ljpwzm4vrf8dziipnf4";
};
outputs = [ "out" "dev" "doc" ];
2015-07-26 22:25:53 +00:00
meta = with lib; {
description = "Media container library to manipulate Ogg files";
longDescription = ''
Library to work with Ogg multimedia container format.
Ogg is flexible file storage and streaming format that supports
plethora of codecs. Open format free for anyone to use.
'';
homepage = "https://xiph.org/ogg/";
license = licenses.bsd3;
maintainers = [ maintainers.ehmry ];
platforms = platforms.all;
};
}