cooklang-flake/packages/cook-mode/default.nix

28 lines
581 B
Nix
Raw Permalink Normal View History

2022-12-30 20:51:44 +01:00
{ 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;
};
}