gpscorrelate: 1.6.0 -> 1.6.1
This commit is contained in:
parent
040b86a96e
commit
39c39f2cbf
@ -1,17 +1,22 @@
|
|||||||
{ fetchurl, stdenv, pkgconfig, exiv2, libxml2, gtk2
|
{ fetchFromGitHub, stdenv, pkgconfig, exiv2, libxml2, gtk2
|
||||||
, libxslt, docbook_xsl, docbook_xml_dtd_42 }:
|
, libxslt, docbook_xsl, docbook_xml_dtd_42 }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "gpscorrelate-1.6.0";
|
name = "gpscorrelate-${version}";
|
||||||
|
version = "1.6.1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "http://freefoote.dview.net/linux/${name}.tar.gz";
|
owner = "freefoote";
|
||||||
sha256 = "1j0b244xkvvf0i4iivp4dw9k4xgyasx4sapd91mnwki35fy49sp0";
|
repo = "gpscorrelate";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "1z0fc75rx7dl6nnydksa578qv116j2c2xs1czfiijzxjghx8njdj";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
pkgconfig exiv2 libxml2 gtk2
|
exiv2 libxml2 gtk2
|
||||||
libxslt docbook_xsl docbook_xml_dtd_42
|
libxslt docbook_xsl
|
||||||
|
docbook_xml_dtd_42
|
||||||
];
|
];
|
||||||
|
|
||||||
patchPhase = ''
|
patchPhase = ''
|
||||||
@ -19,7 +24,7 @@ stdenv.mkDerivation rec {
|
|||||||
-es",^[[:blank:]]*prefix[[:blank:]]*=.*$,prefix = $out,g"
|
-es",^[[:blank:]]*prefix[[:blank:]]*=.*$,prefix = $out,g"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "A GPS photo correlation tool, to add EXIF geotags";
|
description = "A GPS photo correlation tool, to add EXIF geotags";
|
||||||
|
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
@ -38,9 +43,8 @@ stdenv.mkDerivation rec {
|
|||||||
one takes the GPS data in a different format.
|
one takes the GPS data in a different format.
|
||||||
'';
|
'';
|
||||||
|
|
||||||
license = stdenv.lib.licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
|
homepage = https://github.com/freefoote/gpscorrelate;
|
||||||
homepage = http://freefoote.dview.net/linux_gpscorr.html;
|
platforms = platforms.linux;
|
||||||
platforms = stdenv.lib.platforms.linux;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user