about summary refs log tree commit diff
path: root/nixpkgs/pkgs/by-name/kg/kgeotag/package.nix
blob: b59345c79135f50a185eb22efb29a396801dbeb6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ cmake, extra-cmake-modules, fetchFromGitLab, lib, libsForQt5 }:

libsForQt5.mkDerivation rec {
  pname = "kgeotag";
  version = "1.5.0";

  src = fetchFromGitLab {
    domain = "invent.kde.org";
    repo = "kgeotag";
    owner = "graphics";
    rev = "v${version}";
    hash = "sha256-G9SyGvoSOL6nsWnMuSIUSFHFUwZUzExBJBkKN46o8GI=";
  };

  nativeBuildInputs = [ cmake extra-cmake-modules ];

  buildInputs = [ libsForQt5.libkexiv2 libsForQt5.marble ];

  meta = with lib; {
    homepage = "https://kgeotag.kde.org/";
    description = "A stand-alone photo geotagging program";
    changelog = "https://invent.kde.org/graphics/kgeotag/-/blob/master/CHANGELOG.rst";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ cimm ];
    mainProgram = "kgeotag";
  };
}