emacsPackages.grid: init at 20240526.1305

This commit is contained in:
Anderson Torres 2024-06-01 11:00:01 -03:00
parent b1afe5bcf2
commit 1e0a7cb43d
2 changed files with 26 additions and 0 deletions

View File

@ -45,6 +45,8 @@ in
git-undo = callPackage ./manual-packages/git-undo { };
grid = callPackage ./manual-packages/grid { };
haskell-unicode-input-method = callPackage ./manual-packages/haskell-unicode-input-method { };
helm-words = callPackage ./manual-packages/helm-words { };

View File

@ -0,0 +1,24 @@
{
lib,
fetchFromGitHub,
melpaBuild,
}:
melpaBuild {
pname = "grid";
version = "20240526.1305";
src = fetchFromGitHub {
owner = "ichernyshovvv";
repo = "grid.el";
rev = "564eccf4e009955f1a6c268382d00e157d4eb302";
hash = "sha256-3QDw4W3FbFvb2zpkDHAo9BJKxs3LaehyvUVJPKqS9RE=";
};
meta = {
homepage = "https://github.com/ichernyshovvv/grid.el";
description = "A library to put text data into boxes and manipulate them";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ AndersonTorres ];
};
}