···14 desktopToDarwinBundle,
15}:
1617-stdenv.mkDerivation rec {
18 pname = "gpscorrelate";
19- version = "2.2";
2021 src = fetchFromGitHub {
22 owner = "dfandrich";
23 repo = "gpscorrelate";
24- rev = version;
25- hash = "sha256-H1kqOzL79/Y1kHVEQ5y9JRWTDCBMbtEPo75drm8+7Qo=";
26 };
2728 nativeBuildInputs = [
···55 "install-desktop-file"
56 ];
5758- meta = with lib; {
59 description = "GPS photo correlation tool, to add EXIF geotags";
6061 longDescription = ''
62- Digital cameras are cool. So is GPS. And, EXIF tags are really
63 cool too.
6465- 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.
68···7071 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.
75 '';
7677- 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 ];
082 };
83-}
···14 desktopToDarwinBundle,
15}:
1617+stdenv.mkDerivation (finalAttrs: {
18 pname = "gpscorrelate";
19+ version = "2.3";
2021 src = fetchFromGitHub {
22 owner = "dfandrich";
23 repo = "gpscorrelate";
24+ tag = finalAttrs.version;
25+ hash = "sha256-7uNYwnMkW9jlt3kBrNqkhJsDoVkUFbCmqt0lQv8bRE0=";
26 };
2728 nativeBuildInputs = [
···55 "install-desktop-file"
56 ];
5758+ meta = {
59 description = "GPS photo correlation tool, to add EXIF geotags";
6061 longDescription = ''
62+ Digital cameras are cool. So is GPS. And, EXIF tags are really
63 cool too.
6465+ 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.
68···7071 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.
75 '';
7677+ license = lib.licenses.gpl2Plus;
78 homepage = "https://dfandrich.github.io/gpscorrelate/";
79+ changelog = "https://github.com/dfandrich/gpscorrelate/releases/tag/${finalAttrs.version}";
80+ platforms = lib.platforms.unix;
81+ maintainers = with lib.maintainers; [ sikmir ];
82+ mainProgram = "gpscorrelate";
83 };
84+})