lensfun: fix build on x86_64-darwin
This commit is contained in:
parent
0792676d67
commit
5a6019fc83
1 changed files with 9 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
{ lib, stdenv, fetchFromGitHub, pkg-config, glib, zlib, libpng, cmake, libxml2, python3 }:
|
||||
{ lib, stdenv, fetchFromGitHub, fetchpatch, pkg-config, glib, zlib, libpng, cmake, libxml2, python3 }:
|
||||
|
||||
let
|
||||
version = "0.3.3";
|
||||
|
@ -24,6 +24,14 @@ stdenv.mkDerivation {
|
|||
sha256 = "0ixf0f7qv0mc7zrw9w1sb60w833g4rqrfj8cjxwzv2vimqcksccz";
|
||||
};
|
||||
|
||||
patches = [
|
||||
(fetchpatch {
|
||||
name = "fix-compilation-with-clang.patch";
|
||||
url = "https://github.com/lensfun/lensfun/commit/5c2065685a22f19f8138365c0e5acf0be8329c02.patch";
|
||||
sha256 = "sha256-tAOCNL37pKE7hfQCu+hUTKLFnRHWF5Dplqf+GaucG+4=";
|
||||
})
|
||||
];
|
||||
|
||||
# replace database with a more recent snapshot
|
||||
# the mastr branch uses version 2 profiles, while 0.3.3 requires version 1 profiles,
|
||||
# so we run the conversion tool the project provides,
|
||||
|
|
Loading…
Reference in a new issue