wire-desktop: fix linux build
autopatchelf currently fails. adding libxshmfence was included in https://github.com/NixOS/nixpkgs/pull/168636, but missing in https://github.com/NixOS/nixpkgs/pull/168317.
This commit is contained in:
parent
fec97e511e
commit
68e866ecf2
1 changed files with 2 additions and 1 deletions
|
@ -11,6 +11,7 @@
|
|||
, cpio
|
||||
, xar
|
||||
, libdbusmenu
|
||||
, libxshmfence
|
||||
}:
|
||||
|
||||
let
|
||||
|
@ -90,7 +91,7 @@ let
|
|||
wrapGAppsHook
|
||||
];
|
||||
|
||||
buildInputs = atomEnv.packages;
|
||||
buildInputs = [ libxshmfence ] ++ atomEnv.packages;
|
||||
|
||||
unpackPhase = ''
|
||||
runHook preUnpack
|
||||
|
|
Loading…
Reference in a new issue