skim: 0.15.7 -> 0.16.0 (#376410)
[NixPkgs.git] / pkgs / by-name / kg / kgeotag / package.nix
blobab6174f8dd43625181c363c54d8e882c159f03ff
2   stdenv,
3   cmake,
4   extra-cmake-modules,
5   fetchFromGitLab,
6   lib,
7   libsForQt5,
8 }:
10 stdenv.mkDerivation rec {
11   pname = "kgeotag";
12   version = "1.7.0";
14   src = fetchFromGitLab {
15     domain = "invent.kde.org";
16     repo = "kgeotag";
17     owner = "graphics";
18     rev = "v${version}";
19     hash = "sha256-/NYAR/18Dh+fphCBz/zFWj/xqEl28e77ZtV8LlcGyMI=";
20   };
22   nativeBuildInputs = [
23     cmake
24     extra-cmake-modules
25     libsForQt5.wrapQtAppsHook
26   ];
28   buildInputs = [
29     libsForQt5.libkexiv2
30     libsForQt5.marble
31   ];
33   meta = with lib; {
34     homepage = "https://kgeotag.kde.org/";
35     description = "Stand-alone photo geotagging program";
36     changelog = "https://invent.kde.org/graphics/kgeotag/-/blob/master/CHANGELOG.rst";
37     license = licenses.gpl3Plus;
38     maintainers = with maintainers; [ cimm ];
39     mainProgram = "kgeotag";
40   };