blob: 57396cc5800700d576a8a0c4c0fdbcf6ea64862c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
{ inputs }:
self: super: {
exiv2_my =
with super;
exiv2.overrideAttrs (oldAttrs: rec {
version = "git";
src = fetchGit {
url = "https://github.com/Exiv2/exiv2";
ref = "main";
rev = "316cb55574b33d8d4b3e3c240bf3f9e881135e52";
# rev = "4af576c067b72a1968066202eec1ddb577383a63";
};
buildInputs = oldAttrs.buildInputs ++ [
brotli
inih
];
doCheck = false;
postInstall = ''
remove-references-to -t ${stdenv.cc.cc} $lib/lib/*.so.*.*.* $out/bin/exiv2
'';
# postFixup = "";
outputs = [
"out"
"lib"
"dev"
"doc"
"man"
];
patches = [ ];
});
}
|