mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 19:55:41 +03:00
zotero: fix linux rpath
Change library path from `${stdenv.cc.cc.lib}/lib64` to `${stdenv.cc.cc.lib}/lib`
This commit is contained in:
parent
d005c8a12a
commit
6fd0026bbb
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ stdenv.mkDerivation rec {
|
|||
pciutils
|
||||
]
|
||||
+ ":"
|
||||
+ lib.makeSearchPathOutput "lib" "lib64" [ stdenv.cc.cc ];
|
||||
+ lib.makeSearchPathOutput "lib" "lib" [ stdenv.cc.cc ];
|
||||
|
||||
desktopItem = makeDesktopItem {
|
||||
name = "zotero";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue