emacs.pkgs.melpaStablepackages.epkg: Add sqlite as dependency

This commit is contained in:
Damien Cassou
2023-02-10 08:42:43 +01:00
committed by Florian Brandes
parent eb30f96d42
commit 991a5fc215

View File

@@ -194,6 +194,13 @@ let
stripDebugList = [ "share" ];
});
epkg = super.epkg.overrideAttrs (old: {
postPatch = ''
substituteInPlace lisp/epkg.el \
--replace '(call-process "sqlite3"' '(call-process "${pkgs.sqlite}/bin/sqlite3"'
'';
});
erlang = super.erlang.overrideAttrs (attrs: {
buildInputs = attrs.buildInputs ++ [
pkgs.perl