File tree 1 file changed +11
-4
lines changed
pkgs/development/libraries/exiv2
1 file changed +11
-4
lines changed Original file line number Diff line number Diff line change 1
1
{ lib
2
2
, stdenv
3
3
, fetchFromGitHub
4
+ , fetchpatch
4
5
, cmake
5
6
, doxygen
6
7
, gettext
19
20
20
21
stdenv . mkDerivation rec {
21
22
pname = "exiv2" ;
22
- version = "0.28.0 " ;
23
+ version = "0.28.1 " ;
23
24
24
25
outputs = [ "out" "lib" "dev" "doc" "man" ] ;
25
26
26
27
src = fetchFromGitHub {
27
28
owner = "exiv2" ;
28
29
repo = "exiv2" ;
29
30
rev = "v${ version } " ;
30
- hash = "sha256-nEoLJWxSJmAonCbW/iZKjLrKMj09mwEaSUXUcUu8GxU =" ;
31
+ hash = "sha256-Jim8vYWyCa16LAJ1GuP8cCzhXIc2ouo6hVsHg3UQbdg =" ;
31
32
} ;
32
33
34
+ patches = [
35
+ ( fetchpatch {
36
+ url = "https://github.com/Exiv2/exiv2/commit/c351c7cce317571934abf693055779a59df30d6e.patch" ;
37
+ hash = "sha256-fWJT4IUBrAELl6ku0M1iTzGFX74le8Z0UzTJLU/gYls=" ;
38
+ } )
39
+ ] ;
40
+
33
41
nativeBuildInputs = [
34
42
cmake
35
43
doxygen
@@ -67,8 +75,7 @@ stdenv.mkDerivation rec {
67
75
"doc"
68
76
] ;
69
77
70
- # https://github.com/Exiv2/exiv2/issues/2762
71
- doCheck = lib . versionOlder brotli . version "1.1.0" ;
78
+ doCheck = true ;
72
79
73
80
preCheck = ''
74
81
patchShebangs ../test/
You can’t perform that action at this time.
0 commit comments