Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

gpscorrelate: 2.2 -> 2.3

authored by

R. Ryantm and committed by
Nikolay Korotkiy
cee1dfae 62172c1d

+14 -13
+14 -13
pkgs/by-name/gp/gpscorrelate/package.nix
··· 14 14 desktopToDarwinBundle, 15 15 }: 16 16 17 - stdenv.mkDerivation rec { 17 + stdenv.mkDerivation (finalAttrs: { 18 18 pname = "gpscorrelate"; 19 - version = "2.2"; 19 + version = "2.3"; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "dfandrich"; 23 23 repo = "gpscorrelate"; 24 - rev = version; 25 - hash = "sha256-H1kqOzL79/Y1kHVEQ5y9JRWTDCBMbtEPo75drm8+7Qo="; 24 + tag = finalAttrs.version; 25 + hash = "sha256-7uNYwnMkW9jlt3kBrNqkhJsDoVkUFbCmqt0lQv8bRE0="; 26 26 }; 27 27 28 28 nativeBuildInputs = [ ··· 55 55 "install-desktop-file" 56 56 ]; 57 57 58 - meta = with lib; { 58 + meta = { 59 59 description = "GPS photo correlation tool, to add EXIF geotags"; 60 60 61 61 longDescription = '' 62 - Digital cameras are cool. So is GPS. And, EXIF tags are really 62 + Digital cameras are cool. So is GPS. And, EXIF tags are really 63 63 cool too. 64 64 65 - What happens when you merge the three? You end up with a set of 65 + What happens when you merge the three? You end up with a set of 66 66 photos taken with a digital camera that are "stamped" with the 67 67 location at which they were taken. 68 68 ··· 70 70 71 71 A variety of programs exist around the place to match GPS data 72 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 73 + MacOS only. Which doesn't really suit me that much. Also, each 74 74 one takes the GPS data in a different format. 75 75 ''; 76 76 77 - license = licenses.gpl2Plus; 77 + license = lib.licenses.gpl2Plus; 78 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 ]; 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"; 82 83 }; 83 - } 84 + })