emacsPackages.voicemacs: use melpaBuild

This commit is contained in:
Anderson Torres
2024-07-21 01:01:37 -03:00
parent 4902ab5e75
commit ebf9b608d7
2 changed files with 30 additions and 28 deletions
@@ -1,21 +1,22 @@
{ trivialBuild
, lib
, fetchFromGitHub
, avy
, json-rpc-server
, f
, nav-flash
, helm
, cl-lib
, porthole
, default-text-scale
, bind-key
, yasnippet
, company
, company-quickhelp
{
lib,
avy,
bind-key,
cl-lib,
company,
company-quickhelp,
default-text-scale,
f,
fetchFromGitHub,
helm,
json-rpc-server,
melpaBuild,
nav-flash,
porthole,
yasnippet,
}:
trivialBuild {
melpaBuild {
pname = "voicemacs";
version = "0-unstable-2022-02-16";
@@ -23,28 +24,29 @@ trivialBuild {
owner = "jcaw";
repo = "voicemacs";
rev = "d91de2a31c68ab083172ade2451419d6bd7bb389";
sha256 = "sha256-/MBB2R9/V0aYZp15e0vx+67ijCPp2iPlgxe262ldmtc=";
hash = "sha256-/MBB2R9/V0aYZp15e0vx+67ijCPp2iPlgxe262ldmtc=";
};
patches = [ ./add-missing-require.patch ];
patches = [ ./0000-add-missing-require.patch ];
packageRequires = [
avy
json-rpc-server
f
nav-flash
helm
cl-lib
porthole
default-text-scale
bind-key
yasnippet
cl-lib
company
company-quickhelp
default-text-scale
f
helm
json-rpc-server
nav-flash
porthole
yasnippet
];
meta = {
description = "Voicemacs is a set of utilities for controlling Emacs by voice";
homepage = "https://github.com/jcaw/voicemacs/";
description = "Set of utilities for controlling Emacs by voice";
license = lib.licenses.gpl3Only;
platforms = lib.platforms.all;
};
}