3
0
Fork 0
forked from mirrors/nixpkgs

pfstools: port to qt5 (#33248)

Since release 2.1.0 pfsview supports qt5.
This commit is contained in:
Pascal Wittmann 2019-02-01 17:07:52 +01:00
parent a06952dbb1
commit 9f6b441aec
No known key found for this signature in database
GPG key ID: C899ACE7E2322852

View file

@ -1,6 +1,6 @@
{ stdenv, fetchurl, cmake, pkgconfig
, openexr, zlib, imagemagick, libGLU_combined, freeglut, fftwFloat
, fftw, gsl, libexif, perl, opencv, qt4
, fftw, gsl, libexif, perl, opencv, qt5
}:
stdenv.mkDerivation rec {
@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [
openexr zlib imagemagick libGLU_combined freeglut fftwFloat
fftw gsl libexif perl opencv qt4
fftw gsl libexif perl opencv qt5.qtbase
];
patches = [ ./threads.patch ./pfstools.patch ];