Skip to content

Commit

Permalink
Merge pull request #226470 from nagy/wat-mode
Browse files Browse the repository at this point in the history
emacsPackages.wat-mode: init at unstable-2022-07-13
  • Loading branch information
marsam authored May 1, 2023
2 parents 7414874 + c8fe3df commit 120dd6a
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,8 @@ in

voicemacs = callPackage ./manual-packages/voicemacs { };

wat-mode = callPackage ./manual-packages/wat-mode { };

yes-no = callPackage ./manual-packages/yes-no { };

youtube-dl = callPackage ./manual-packages/youtube-dl { };
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Manually packaged until it is upstreamed to melpa
# See https://github.com/devonsparks/wat-mode/issues/1
{ lib, trivialBuild, fetchFromGitHub, fetchpatch, emacs }:

trivialBuild rec {
pname = "wat-mode";
version = "unstable-2022-07-13";

src = fetchFromGitHub {
owner = "devonsparks";
repo = pname;
rev = "46b4df83e92c585295d659d049560dbf190fe501";
hash = "sha256-jV5V3TRY+D3cPSz3yFwVWn9yInhGOYIaUTPEhsOBxto=";
};

meta = with lib; {
homepage = "https://github.com/devonsparks/wat-mode";
description = "An Emacs major mode for WebAssembly's text format";
license = licenses.gpl3Only;
maintainers = with maintainers; [ nagy ];
inherit (emacs.meta) platforms;
};
}

0 comments on commit 120dd6a

Please sign in to comment.