diffpdf: fix qt wrapping

We were using stdenv.mkDerivation instead of the qt-provided
mkDerivation, so qt wrapping didn't happen.
This commit is contained in:
Florian Klink 2019-12-21 13:46:53 +01:00
parent 3f998fac7f
commit 2054a083fb

View File

@ -1,6 +1,6 @@
{ stdenv, fetchurl, fetchpatch, qmake, qttools, qtbase, poppler }:
{ stdenv, mkDerivation, fetchurl, fetchpatch, qmake, qttools, qtbase, poppler }:
stdenv.mkDerivation rec {
mkDerivation rec {
version = "2.1.3";
pname = "diffpdf";