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
31 lines
596 B
Nix
31 lines
596 B
Nix
{
|
|
build-idris-package,
|
|
fetchFromGitHub,
|
|
contrib,
|
|
effects,
|
|
lib,
|
|
}:
|
|
build-idris-package {
|
|
pname = "hamt";
|
|
version = "2016-11-15";
|
|
|
|
idrisDeps = [
|
|
contrib
|
|
effects
|
|
];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bamboo";
|
|
repo = "idris-hamt";
|
|
rev = "e70f3eedddb5ccafea8e386762b8421ba63c495a";
|
|
sha256 = "0m2yjr20dxkfmn3nzc68l6vh0rdaw6b637yijwl4c83b5xiac1mi";
|
|
};
|
|
|
|
meta = {
|
|
description = "Idris Hash Array Mapped Trie";
|
|
homepage = "https://github.com/bamboo/idris-hamt";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = [ lib.maintainers.brainrape ];
|
|
};
|
|
}
|