13 , desktopToDarwinBundle
16 stdenv.mkDerivation rec {
17 pname = "gpscorrelate";
20 src = fetchFromGitHub {
22 repo = "gpscorrelate";
24 hash = "sha256-1t9XUY12hVaUNOg785dMJCiaMMCI2XCcif1DkKYXOoo=";
34 ] ++ lib.optional stdenv.hostPlatform.isDarwin desktopToDarwinBundle;
43 "prefix=${placeholder "out"}"
44 "CC=${stdenv.cc.targetPrefix}cc"
45 "CXX=${stdenv.cc.targetPrefix}c++"
52 # https://github.com/dfandrich/gpscorrelate/issues/29
53 rm tests/data/test005.*
56 installTargets = [ "install" "install-po" "install-desktop-file" ];
59 description = "GPS photo correlation tool, to add EXIF geotags";
62 Digital cameras are cool. So is GPS. And, EXIF tags are really
65 What happens when you merge the three? You end up with a set of
66 photos taken with a digital camera that are "stamped" with the
67 location at which they were taken.
69 The EXIF standard defines a number of tags that are for use with GPS.
71 A variety of programs exist around the place to match GPS data
72 with digital camera photos, but most of them are Windows or
73 MacOS only. Which doesn't really suit me that much. Also, each
74 one takes the GPS data in a different format.
77 license = licenses.gpl2Plus;
78 homepage = "https://dfandrich.github.io/gpscorrelate/";
79 changelog = "https://github.com/dfandrich/gpscorrelate/releases/tag/${src.rev}";
80 platforms = platforms.unix;
81 maintainers = with maintainers; [ sikmir ];