evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / le / lensfun / package.nix
blob8972485bb2824c5b4ddd8fa444d90618f99d9cdc
1 { lib, stdenv, fetchFromGitHub, pkg-config, glib, zlib, libpng, cmake, python3 }:
3 let
4   version = "0.3.4";
5   pname = "lensfun";
7   # Fetch a more recent version of the repo containing a more recent lens
8   # database
9   lensfunDatabase = fetchFromGitHub {
10     owner = "lensfun";
11     repo = "lensfun";
12     rev = "a1510e6f33ce9bc8b5056a823c6d5bc6b8cba033";
13     sha256 = "sha256-qdONyKk873Tq11M33JmznhJMAGd4dqp5KdXdVhfy/Ak=";
14   };
17 stdenv.mkDerivation {
18   inherit pname version;
20   src = fetchFromGitHub {
21     owner = "lensfun";
22     repo = "lensfun";
23     rev = "v${version}";
24     sha256 = "sha256-FyYilIz9ssSHG6S02Z2bXy7fjSY51+SWW3v8bm7sLvY=";
25   };
27   # replace database with a more recent snapshot
28   # the master branch uses version 2 profiles, while 0.3.3 requires version 1 profiles,
29   # so we run the conversion tool the project provides,
30   # then untar the verson 1 profiles into the source dir before we build
31   prePatch = ''
32     rm -R data/db
33     python3 ${lensfunDatabase}/tools/lensfun_convert_db_v2_to_v1.py $TMPDIR ${lensfunDatabase}/data/db
34     mkdir -p data/db
35     tar xvf $TMPDIR/db/version_1.tar -C data/db
36     date +%s > data/db/timestamp.txt
37   '';
39   nativeBuildInputs = [
40     cmake
41     pkg-config
42     python3
43     python3.pkgs.setuptools
44     python3.pkgs.lxml # For the db converison
45   ];
47   buildInputs = [ glib zlib libpng ];
49   cmakeFlags = [ "-DINSTALL_HELPER_SCRIPTS=OFF" ];
51   meta = with lib; {
52     platforms = platforms.linux ++ platforms.darwin;
53     maintainers = with maintainers; [ flokli paperdigits ];
54     license = lib.licenses.lgpl3;
55     description = "Opensource database of photographic lenses and their characteristics";
56     homepage = "https://lensfun.github.io";
57   };