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
629 B
Nix
31 lines
629 B
Nix
{
|
|
build-idris-package,
|
|
fetchFromGitHub,
|
|
effects,
|
|
test,
|
|
lib,
|
|
}:
|
|
build-idris-package {
|
|
pname = "containers";
|
|
version = "2017-09-10";
|
|
|
|
idrisDeps = [
|
|
effects
|
|
test
|
|
];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jfdm";
|
|
repo = "idris-containers";
|
|
rev = "fb96aaa3f40faa432cd7a36d956dbc4fe9279234";
|
|
sha256 = "0vyjadd9sb8qcbzvzhnqwc8wa7ma770c10xhn96jsqsnzr81k52d";
|
|
};
|
|
|
|
meta = {
|
|
description = "Various data structures for use in the Idris Language";
|
|
homepage = "https://github.com/jfdm/idris-containers";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = [ lib.maintainers.brainrape ];
|
|
};
|
|
}
|