Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 pname = "libogg"; 5 version = "1.3.5"; 6 7 src = fetchurl { 8 url = "http://downloads.xiph.org/releases/ogg/${pname}-${version}.tar.xz"; 9 sha256 = "01b7050bghdvbxvw0gzv588fn4a27zh42ljpwzm4vrf8dziipnf4"; 10 }; 11 12 outputs = [ "out" "dev" "doc" ]; 13 14 meta = with lib; { 15 description = "Media container library to manipulate Ogg files"; 16 longDescription = '' 17 Library to work with Ogg multimedia container format. 18 Ogg is flexible file storage and streaming format that supports 19 plethora of codecs. Open format free for anyone to use. 20 ''; 21 homepage = "https://xiph.org/ogg/"; 22 license = licenses.bsd3; 23 maintainers = [ maintainers.ehmry ]; 24 platforms = platforms.all; 25 }; 26}