gpxsee: 11.0 → 11.1

This commit is contained in:
Nikolay Korotkiy 2022-06-07 23:44:08 +03:00
parent b29ac1db91
commit 9505202707
No known key found for this signature in database
GPG key ID: D1DE6D7F693663A5

View file

@ -1,14 +1,14 @@
{ lib, stdenv, fetchFromGitHub, qmake, qttools, qttranslations, qtlocation, wrapQtAppsHook, substituteAll }: { lib, stdenv, fetchFromGitHub, qmake, qttools, qttranslations, qtlocation, qtpbfimageplugin, wrapQtAppsHook, substituteAll }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "gpxsee"; pname = "gpxsee";
version = "11.0"; version = "11.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "tumic0"; owner = "tumic0";
repo = "GPXSee"; repo = "GPXSee";
rev = version; rev = version;
sha256 = "sha256-UT3Q7pirEXvwQmqHHiSivX/VNZPVLwRJ/aiP7wpkhqQ="; sha256 = "sha256-0n1XPrJ+gssIP/7k9CI8AWXs9ddKOg3Lo3DfrXGUl84=";
}; };
patches = (substituteAll { patches = (substituteAll {
@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
inherit qttranslations; inherit qttranslations;
}); });
buildInputs = [ qtlocation ]; buildInputs = [ qtlocation qtpbfimageplugin ];
nativeBuildInputs = [ qmake qttools wrapQtAppsHook ]; nativeBuildInputs = [ qmake qttools wrapQtAppsHook ];