Merge pull request #215647 from DamienCassou/emacs-melpa-epkg-sqlite

emacs.pkgs.melpaStablepackages.epkg: Add sqlite as dependency
This commit is contained in:
Kim Lindberger 2023-02-10 17:17:04 +01:00 committed by GitHub
commit f4c4c9825a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -194,6 +194,13 @@ let
stripDebugList = [ "share" ]; 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: { erlang = super.erlang.overrideAttrs (attrs: {
buildInputs = attrs.buildInputs ++ [ buildInputs = attrs.buildInputs ++ [
pkgs.perl pkgs.perl