change package dir layout

This commit is contained in:
Moritz Böhme 2022-12-31 16:28:59 +01:00
parent 71e82cca2b
commit f4ecd4a136
No known key found for this signature in database
GPG key ID: 970C6E89EB0547A9
4 changed files with 1 additions and 1 deletions

View 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;
};
}