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

gpscorrelate: add patch for exiv2 0.28

+9 -1
+9 -1
pkgs/applications/misc/gpscorrelate/default.nix
··· 1 - { fetchFromGitHub, lib, stdenv, pkg-config, exiv2, libxml2, gtk3 1 + { lib, stdenv, fetchFromGitHub, fetchpatch, pkg-config, exiv2, libxml2, gtk3 2 2 , libxslt, docbook_xsl, docbook_xml_dtd_42, desktop-file-utils, wrapGAppsHook }: 3 3 4 4 stdenv.mkDerivation rec { ··· 11 11 rev = version; 12 12 sha256 = "1wkpb0nqnm0ik46hp2sibf96h2gxi6n951zm8c72scgmh4ciq4fl"; 13 13 }; 14 + 15 + patches = [ 16 + (fetchpatch { 17 + name = "gpscorrelate-2.0-exiv2-0.28.patch"; 18 + url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/sci-geosciences/gpscorrelate/files/gpscorrelate-2.0-exiv2-0.28.patch?id=002882203ad6a2b08ce035a18b95844a9f4b85d0"; 19 + hash = "sha256-/5czvSh2siPmohXWHQEg6VWCUQnZxEm2livLsEOAa6c="; 20 + }) 21 + ]; 14 22 15 23 nativeBuildInputs = [ 16 24 desktop-file-utils