Skip to content

Commit 81b944e

Browse files
committed
1 parent 8277b53 commit 81b944e

1 file changed

Lines changed: 2 additions & 12 deletions

File tree

pkgs/development/libraries/libwebp/default.nix

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{ lib, stdenv, fetchFromGitHub, autoreconfHook, libtool
2-
, fetchpatch
32
, threadingSupport ? true # multi-threading
43
, openglSupport ? false, freeglut, libGL, libGLU # OpenGL (required for vwebp)
54
, pngSupport ? true, libpng # PNG image format
@@ -28,24 +27,15 @@
2827

2928
stdenv.mkDerivation rec {
3029
pname = "libwebp";
31-
version = "1.3.0";
30+
version = "1.3.1";
3231

3332
src = fetchFromGitHub {
3433
owner = "webmproject";
3534
repo = pname;
3635
rev = "v${version}";
37-
hash = "sha256-nhXkq+qKpaa75YQB/W/cRozslTIFPdXeqj1y6emQeHk=";
36+
hash = "sha256-Q94avvKjPdwdGt5ADo30cf2V4T7MCTubDHJxTtbG4xQ=";
3837
};
3938

40-
patches = [
41-
# https://www.mozilla.org/en-US/security/advisories/mfsa2023-13/#MFSA-TMP-2023-0001
42-
(fetchpatch {
43-
url = "https://github.com/webmproject/libwebp/commit/a486d800b60d0af4cc0836bf7ed8f21e12974129.patch";
44-
name = "fix-msfa-tmp-2023-0001.patch";
45-
hash = "sha256-TRKXpNkYVzftBw09mX+WeQRhRoOzBgXFTNZBzSdCKvc=";
46-
})
47-
];
48-
4939
configureFlags = [
5040
(lib.enableFeature threadingSupport "threading")
5141
(lib.enableFeature openglSupport "gl")

0 commit comments

Comments
 (0)