lensfun: update database to a more recent snapshot
lensfun hasn't had a new release since quite some time, and the database updater doesn't work in NixOS (https://github.com/NixOS/nixpkgs/issues/99009). This replaces the database with a more recent snapshot during build, thus adding support for more recent camera models/lenses (as reported in https://github.com/NixOS/nixpkgs/issues/107304)
This commit is contained in:
parent
c939d8f199
commit
9137be6daa
@ -3,6 +3,16 @@
|
||||
let
|
||||
version = "0.3.95";
|
||||
pname = "lensfun";
|
||||
|
||||
# Fetch a more recent version of the repo containing a more recent lens
|
||||
# database
|
||||
lensfunDatabase = fetchFromGitHub {
|
||||
owner = "lensfun";
|
||||
repo = "lensfun";
|
||||
rev = "4672d765a17bfef7bc994ca7008cb717c61045d5";
|
||||
sha256 = "00x35xhpn55j7f8qzakb6wl1ccbljg1gqjb93jl9w3mha2bzsr41";
|
||||
};
|
||||
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
inherit pname version;
|
||||
@ -14,6 +24,12 @@ stdenv.mkDerivation {
|
||||
sha256 = "0isli0arns8bmxqpbr1jnbnqh5wvspixdi51adm671f9ngng7x5r";
|
||||
};
|
||||
|
||||
# replace database with a more recent snapshot
|
||||
postUnpack = ''
|
||||
rm -R source/data/db
|
||||
cp -R ${lensfunDatabase}/data/db source/data
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [ cmake pkg-config ];
|
||||
buildInputs = [ glib zlib libpng ];
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user