Files
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

26 lines
596 B
Nix

{
build-idris-package,
fetchFromGitHub,
lib,
}:
build-idris-package {
pname = "free";
version = "2017-07-03";
ipkgName = "idris-free";
src = fetchFromGitHub {
owner = "idris-hackers";
repo = "idris-free";
rev = "919950fb6a9d97c139c2d102402fec094a99c397";
sha256 = "1n4daf1acjkd73an4m31yp9g616crjb7h5z02f1gj29wm3dbx5s7";
};
meta = {
description = "Free Monads and useful constructions to work with them";
homepage = "https://github.com/idris-hackers/idris-free";
license = lib.licenses.bsd2;
maintainers = [ lib.maintainers.brainrape ];
};
}