Files
nixpkgs/pkgs/development/idris-modules/recursion_schemes.nix
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

37 lines
703 B
Nix

{
build-idris-package,
fetchFromGitHub,
free,
composition,
comonad,
bifunctors,
hezarfen,
lib,
}:
build-idris-package {
pname = "recursion_schemes";
version = "2018-01-19";
idrisDeps = [
free
composition
comonad
bifunctors
hezarfen
];
src = fetchFromGitHub {
owner = "vmchale";
repo = "recursion_schemes";
rev = "6bcbe0da561f461e7a05e29965a18ec9f87f8d82";
sha256 = "0rbx0yqa0fb7h7qfsvqvirc5q85z51rcwbivn6351jgn3a0inmhf";
};
meta = {
description = "Recursion schemes for Idris";
homepage = "https://github.com/vmchale/recursion_schemes";
license = lib.licenses.bsd3;
maintainers = [ lib.maintainers.brainrape ];
};
}