add cook-mode
This commit is contained in:
parent
8ecc7da0fd
commit
012d85c8c2
2 changed files with 38 additions and 11 deletions
27
packages/cook-mode.nix
Normal file
27
packages/cook-mode.nix
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{ lib
|
||||
, emacsPackages
|
||||
, fetchFromGitHub
|
||||
, emacs
|
||||
}:
|
||||
|
||||
emacsPackages.trivialBuild {
|
||||
pname = "cook-mode";
|
||||
version = "unstable-2022-05-10";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "cooklang";
|
||||
repo = "cook-mode";
|
||||
rev = "fac1adacd58db877df0e13108c23e6c415e081cf";
|
||||
sha256 = "";
|
||||
};
|
||||
|
||||
buildInputs = [ emacs ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Emacs syntax highlighting for Cooklang";
|
||||
homepage = "https://github.com/cooklang/cook-mode";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ MoritzBoehme ];
|
||||
inherit (emacs.meta) platforms;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue