Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
25 lines
532 B
Nix
25 lines
532 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
melpaBuild,
|
|
}:
|
|
|
|
melpaBuild {
|
|
pname = "grid";
|
|
version = "0-unstable-2024-05-26";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ichernyshovvv";
|
|
repo = "grid.el";
|
|
rev = "564eccf4e009955f1a6c268382d00e157d4eb302";
|
|
hash = "sha256-3QDw4W3FbFvb2zpkDHAo9BJKxs3LaehyvUVJPKqS9RE=";
|
|
};
|
|
|
|
meta = {
|
|
homepage = "https://github.com/ichernyshovvv/grid.el";
|
|
description = "Library to put text data into boxes and manipulate them";
|
|
license = lib.licenses.gpl3Plus;
|
|
maintainers = [ ];
|
|
};
|
|
}
|