Unverified Commit be8dcd6b authored by Damien Cassou's avatar Damien Cassou
Browse files

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

parent e2a7510f
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -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