chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / kg / kgeotag / package.nix
blobc894c991187a337fa12e3a7fdc64c9f8040496f0
1 { cmake, extra-cmake-modules, fetchFromGitLab, lib, libsForQt5 }:
3 libsForQt5.mkDerivation rec {
4   pname = "kgeotag";
5   version = "1.5.0";
7   src = fetchFromGitLab {
8     domain = "invent.kde.org";
9     repo = "kgeotag";
10     owner = "graphics";
11     rev = "v${version}";
12     hash = "sha256-G9SyGvoSOL6nsWnMuSIUSFHFUwZUzExBJBkKN46o8GI=";
13   };
15   nativeBuildInputs = [ cmake extra-cmake-modules ];
17   buildInputs = [ libsForQt5.libkexiv2 libsForQt5.marble ];
19   meta = with lib; {
20     homepage = "https://kgeotag.kde.org/";
21     description = "Stand-alone photo geotagging program";
22     changelog = "https://invent.kde.org/graphics/kgeotag/-/blob/master/CHANGELOG.rst";
23     license = licenses.gpl3Plus;
24     maintainers = with maintainers; [ cimm ];
25     mainProgram = "kgeotag";
26   };