emacs.pkgs.telega: Replace dependency commands with absolute store paths

wip/yesman
adisbladis 3 years ago
parent 651b0c786b
commit 173af9cb94
No known key found for this signature in database
GPG Key ID: 110BFAD44C6249B7
  1. 10
      pkgs/applications/editors/emacs-modes/melpa-packages.nix

@ -299,6 +299,16 @@ let
buildInputs = old.buildInputs ++ [ pkgs.tdlib ];
nativeBuildInputs = [ pkgs.pkg-config ];
postPatch = ''
substituteInPlace telega-customize.el \
--replace 'defcustom telega-server-command "telega-server"' \
"defcustom telega-server-command \"$out/bin/telega-server\""
substituteInPlace telega-sticker.el --replace '"dwebp"' '"${pkgs.libwebp}/bin/dwebp"'
substituteInPlace telega-vvnote.el --replace '"ffmpeg' '"${pkgs.ffmpeg}/bin/ffmpeg'
'';
postBuild = ''
cd source/server
make

Loading…
Cancel
Save