lol

libogg: 1.3.4 -> 1.3.5

authored by

Sergei Trofimovich and committed by
Emery Hemingway
56878bb6 52ebc93c

+5 -12
+5 -12
pkgs/development/libraries/libogg/default.nix
··· 1 - { lib, stdenv, fetchurl, fetchpatch }: 1 + { lib, stdenv, fetchurl }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "libogg-1.3.4"; 4 + pname = "libogg"; 5 + version = "1.3.5"; 5 6 6 7 src = fetchurl { 7 - url = "http://downloads.xiph.org/releases/ogg/${name}.tar.xz"; 8 - sha256 = "1zlk33vxvxr0l9lhkbhkdwvylw96d2n0fnd3d8dl031hph9bqqy1"; 8 + url = "http://downloads.xiph.org/releases/ogg/${pname}-${version}.tar.xz"; 9 + sha256 = "01b7050bghdvbxvw0gzv588fn4a27zh42ljpwzm4vrf8dziipnf4"; 9 10 }; 10 11 11 12 outputs = [ "out" "dev" "doc" ]; 12 - 13 - patches = lib.optionals stdenv.isDarwin [ 14 - # Fix unsigned typedefs on darwin. Remove with the next release https://github.com/xiph/ogg/pull/64 15 - (fetchpatch { 16 - url = "https://github.com/xiph/ogg/commit/c8fca6b4a02d695b1ceea39b330d4406001c03ed.patch"; 17 - sha256 = "1s72g37y87x0a74zjji9vx2hyk86kr4f2l3m4y2fipvlf9348b3f"; 18 - }) 19 - ]; 20 13 21 14 meta = with lib; { 22 15 description = "Media container library to manipulate Ogg files";