rambox: remove gapps-wrapper

This is now provided by electron itself.
This commit is contained in:
Jörg Thalheim 2019-06-25 07:52:54 +01:00
parent ebe4375ff4
commit 205296f55a
No known key found for this signature in database
GPG Key ID: B3F5D81B0C6967C4

View File

@ -1,5 +1,4 @@
{ stdenv, newScope, makeWrapper
, wrapGAppsHook, gnome3, glib
, electron, xdg_utils, makeDesktopItem
, auth0ClientID ? "0spuNKfIGeLAQ_Iki9t3fGxbfJl3k8SU"
, auth0Domain ? "nixpkgs.auth0.com" }:
@ -28,9 +27,8 @@ with self;
stdenv.mkDerivation {
name = "rambox-${rambox-bare.version}";
nativeBuildInputs = [ makeWrapper wrapGAppsHook ];
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ glib gnome3.gsettings_desktop_schemas ];
unpackPhase = ":";
dontWrapGApps = true; # we only want $gappsWrapperArgs here
@ -45,7 +43,6 @@ stdenv.mkDerivation {
postFixup = ''
makeWrapper ${electron}/bin/electron $out/bin/rambox \
--add-flags "${rambox-bare} --without-update" \
"''${gappsWrapperArgs[@]}" \
--prefix PATH : ${xdg_utils}/bin
'';