-
-
Notifications
You must be signed in to change notification settings - Fork 14.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #226470 from nagy/wat-mode
emacsPackages.wat-mode: init at unstable-2022-07-13
- Loading branch information
Showing
2 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
pkgs/applications/editors/emacs/elisp-packages/manual-packages/wat-mode/default.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
}; | ||
} |