lensfun: make sourceRoot independent

This commit is contained in:
Jonathan Ringer
2022-01-07 09:36:49 -08:00
parent 0701f2904b
commit a48ac877a6
@@ -25,9 +25,9 @@ stdenv.mkDerivation {
};
# replace database with a more recent snapshot
postUnpack = ''
rm -R source/data/db
cp -R ${lensfunDatabase}/data/db source/data
prePatch = ''
rm -R ./data/db
cp -R ${lensfunDatabase}/data/db ./data
'';
nativeBuildInputs = [ cmake pkg-config ];