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
23 lines
528 B
Nix
23 lines
528 B
Nix
{
|
|
build-idris-package,
|
|
fetchFromGitHub,
|
|
lib,
|
|
}:
|
|
build-idris-package {
|
|
pname = "bifunctors";
|
|
version = "2017-02-07";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "japesinator";
|
|
repo = "Idris-Bifunctors";
|
|
rev = "be7b8bde88331ad3af87e5c0a23fc0f3d52f3868";
|
|
sha256 = "0cfp58lhm2g0g1vrpb0mh71qb44n2yvg5sil9ndyf2sqd5ria6yq";
|
|
};
|
|
|
|
meta = {
|
|
description = "Small bifunctor library for idris";
|
|
homepage = "https://github.com/japesinator/Idris-Bifunctors";
|
|
maintainers = [ lib.maintainers.brainrape ];
|
|
};
|
|
}
|