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
30 lines
544 B
Nix
30 lines
544 B
Nix
{
|
|
build-idris-package,
|
|
fetchFromGitHub,
|
|
contrib,
|
|
bi,
|
|
lib,
|
|
}:
|
|
build-idris-package {
|
|
pname = "trees";
|
|
version = "2018-03-19";
|
|
|
|
idrisDeps = [
|
|
contrib
|
|
bi
|
|
];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "clayrat";
|
|
repo = "idris-trees";
|
|
rev = "dc17f9598bd78ec2b283d91b3c58617960d88c85";
|
|
sha256 = "1c3p69875qc4zdk28im9xz45zw46ajgcmxpqmig63y0z4v3gwxww";
|
|
};
|
|
|
|
meta = {
|
|
description = "Trees in Idris";
|
|
homepage = "https://github.com/clayrat/idris-trees";
|
|
maintainers = [ lib.maintainers.brainrape ];
|
|
};
|
|
}
|