Merge pull request #96900 from danieldk/zotero-impurity
zotero: fix reliance on coreutils being in PATH
This commit is contained in:
commit
17d334e05c
1 changed files with 7 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
|||
{ stdenv, fetchurl, wrapGAppsHook, makeDesktopItem
|
||||
, atk
|
||||
, cairo
|
||||
, coreutils
|
||||
, curl
|
||||
, cups
|
||||
, dbus-glib
|
||||
|
@ -131,6 +132,12 @@ stdenv.mkDerivation rec {
|
|||
"$out/usr/lib/zotero-bin-${version}/{}" \;
|
||||
'';
|
||||
|
||||
preFixup = ''
|
||||
gappsWrapperArgs+=(
|
||||
--prefix PATH : ${stdenv.lib.makeBinPath [ coreutils ]}
|
||||
)
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://www.zotero.org";
|
||||
description = "Collect, organize, cite, and share your research sources";
|
||||
|
|
Loading…
Reference in a new issue