mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
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:
parent
3f998fac7f
commit
2054a083fb
1 changed files with 2 additions and 2 deletions
|
@ -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";
|
||||
|
||||
|
|
Loading…
Reference in a new issue