Merge pull request #258272 from wegank/phototonic-exiv2

phototonic: refactor, add patch for exiv2 0.28
This commit is contained in:
Weijia Wang 2023-10-01 00:13:28 +02:00 committed by GitHub
commit 748bc1d201
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,18 +1,26 @@
{ mkDerivation, lib, fetchFromGitHub, qtbase, qmake, exiv2 }:
{ lib, stdenv, fetchFromGitHub, fetchpatch, qmake, wrapQtAppsHook, qtbase, exiv2 }:
mkDerivation rec {
stdenv.mkDerivation rec {
pname = "phototonic";
version = "2.1";
src = fetchFromGitHub {
repo = "phototonic";
owner = "oferkv";
repo = "phototonic";
rev = "v${version}";
sha256 = "0csidmxl1sfmn6gq81vn9f9jckb4swz3sgngnwqa4f75lr6604h7";
hash = "sha256-BxJgTKblOKIwt88+PT7XZE0mk0t2B4SfsdXpQHttUTM=";
};
patches = [
(fetchpatch {
name = "exiv2-0.28.patch";
url = "https://gitlab.archlinux.org/archlinux/packaging/packages/phototonic/-/raw/fcfa17307ad8988750cc09200188c9365c2c0b79/exiv2-0.28.patch";
hash = "sha256-EayJYM4qobUWosxV2Ylj+2eiyhk1jM8OfnFZDbVdGII=";
})
];
nativeBuildInputs = [ qmake wrapQtAppsHook ];
buildInputs = [ qtbase exiv2 ];
nativeBuildInputs = [ qmake ];
preConfigure = ''
sed -i 's;/usr;$$PREFIX/;g' phototonic.pro
@ -20,9 +28,9 @@ mkDerivation rec {
meta = with lib; {
description = "An image viewer and organizer";
homepage = "https://sourceforge.net/projects/phototonic/";
license = licenses.gpl3;
platforms = platforms.linux;
homepage = "https://github.com/oferkv/phototonic";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ pSub ];
platforms = platforms.linux;
};
}