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
28 lines
661 B
Nix
28 lines
661 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
melpaBuild,
|
|
unstableGitUpdater,
|
|
}:
|
|
|
|
melpaBuild {
|
|
pname = "git-undo";
|
|
version = "0-unstable-2022-08-07";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jwiegley";
|
|
repo = "git-undo-el";
|
|
rev = "3d9c95fc40a362eae4b88e20ee21212d234a9ee6";
|
|
hash = "sha256-xwVCAdxnIRHrFNWvtlM3u6CShsUiGgl1CiBTsp2x7IM=";
|
|
};
|
|
|
|
passthru.updateScript = unstableGitUpdater { hardcodeZeroVersion = true; };
|
|
|
|
meta = {
|
|
homepage = "https://github.com/jwiegley/git-undo-el";
|
|
description = "Revert region to most recent Git-historical version";
|
|
license = lib.licenses.gpl2Plus;
|
|
maintainers = with lib.maintainers; [ leungbk ];
|
|
};
|
|
}
|