Merge pull request #146129 from gbtb/rocketchat-desktop_wrapGAppsHook
rocketchat-desktop: added wrapGAppsHook, 3.5.7 -> 3.6.0
This commit is contained in:
commit
3372278ecb
1 changed files with 7 additions and 3 deletions
|
@ -1,16 +1,20 @@
|
||||||
{ lib, stdenv, pkgs, fetchurl }:
|
{ lib, stdenv, pkgs, fetchurl, wrapGAppsHook }:
|
||||||
let
|
let
|
||||||
libPathNative = { packages }: lib.makeLibraryPath packages;
|
libPathNative = { packages }: lib.makeLibraryPath packages;
|
||||||
in
|
in
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "rocketchat-desktop";
|
pname = "rocketchat-desktop";
|
||||||
version = "3.5.7";
|
version = "3.6.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/${version}/rocketchat_${version}_amd64.deb";
|
url = "https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/${version}/rocketchat_${version}_amd64.deb";
|
||||||
sha256 = "1ri8a60fsbqgq83f8wkyfnd59nqk4d0gpz1vanj54769zflpl71s";
|
sha256 = "1691mzg52hkvkzm4pvmjyc3n04ppxk36rjk7zxh8682ciszz9pl3";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
wrapGAppsHook #to fully work with gnome also needs programs.dconf.enable = true in your configuration.nix
|
||||||
|
];
|
||||||
|
|
||||||
buildInputs = with pkgs; [
|
buildInputs = with pkgs; [
|
||||||
gtk3
|
gtk3
|
||||||
stdenv.cc.cc
|
stdenv.cc.cc
|
||||||
|
|
Loading…
Reference in a new issue