Merge pull request #108991 from flokli/lensfun-database

This commit is contained in:
Sandro 2021-01-13 01:52:10 +01:00 committed by GitHub
commit d279a5666d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,24 +1,45 @@
{ stdenv, fetchurl, pkgconfig, glib, zlib, libpng, cmake }:
{ stdenv, fetchFromGitHub, pkg-config, glib, zlib, libpng, cmake }:
stdenv.mkDerivation rec {
let
version = "0.3.95";
pname = "lensfun";
src = fetchurl {
url = "mirror://sourceforge/lensfun/${version}/${pname}-${version}.tar.gz";
sha256 = "0218f3xrlln0jmh4gcf1zbpvi2bidgl3b2mblf6c810n7j1rrhl2";
# Fetch a more recent version of the repo containing a more recent lens
# database
lensfunDatabase = fetchFromGitHub {
owner = "lensfun";
repo = "lensfun";
rev = "4672d765a17bfef7bc994ca7008cb717c61045d5";
sha256 = "00x35xhpn55j7f8qzakb6wl1ccbljg1gqjb93jl9w3mha2bzsr41";
};
nativeBuildInputs = [ cmake pkgconfig ];
in
stdenv.mkDerivation {
inherit pname version;
src = fetchFromGitHub {
owner = "lensfun";
repo = "lensfun";
rev = "v${version}";
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 ];
configureFlags = [ "-v" ];
cmakeFlags = [ "-DINSTALL_HELPER_SCRIPTS=OFF" ];
meta = with stdenv.lib; {
platforms = platforms.linux ++ platforms.darwin;
maintainers = with maintainers; [ ];
maintainers = with maintainers; [ flokli ];
license = stdenv.lib.licenses.lgpl3;
description = "An opensource database of photographic lenses and their characteristics";
homepage = "http://lensfun.sourceforge.net/";
homepage = "https://lensfun.github.io";
};
}