From 1be86c6823806d14c8aadbd3cdaf64ac2eef0f6b Mon Sep 17 00:00:00 2001 From: K900 Date: Sat, 26 Nov 2022 16:15:36 +0300 Subject: [PATCH] cb2bib: wrap correctly --- pkgs/applications/office/cb2bib/default.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/office/cb2bib/default.nix b/pkgs/applications/office/cb2bib/default.nix index b0a0fded80ae..331e6a7c3a26 100644 --- a/pkgs/applications/office/cb2bib/default.nix +++ b/pkgs/applications/office/cb2bib/default.nix @@ -1,4 +1,4 @@ -{ lib, stdenv, fetchurl, qmake, qtbase, qtwebkit, qtx11extras, lzo, libX11 }: +{ lib, stdenv, fetchurl, qmake, qtbase, qtwebkit, qtx11extras, lzo, libX11, wrapQtAppsHook }: stdenv.mkDerivation rec { pname = "cb2bib"; @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { sha256 = "0gv7cnxi84lr6d5y71pd67h0ilmf5c88j1jxgyn9dvj19smrv99h"; }; buildInputs = [ qtbase qtwebkit qtx11extras lzo libX11 ]; - nativeBuildInputs = [ qmake ]; + nativeBuildInputs = [ qmake wrapQtAppsHook ]; configurePhase = '' runHook preConfigure @@ -16,8 +16,6 @@ stdenv.mkDerivation rec { runHook postConfigure ''; - dontWrapQtApps = true; - meta = with lib; { description = "Rapidly extract unformatted, or unstandardized bibliographic references from email alerts, journal Web pages and PDF files"; homepage = "http://www.molspaces.com/d_cb2bib-overview.php";