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
32 lines
653 B
Nix
32 lines
653 B
Nix
{
|
|
lib,
|
|
eggDerivation,
|
|
fetchFromGitHub,
|
|
chickenEggs,
|
|
}:
|
|
|
|
eggDerivation {
|
|
src = fetchFromGitHub {
|
|
owner = "corngood";
|
|
repo = "egg2nix";
|
|
rev = "chicken-5";
|
|
sha256 = "1vfnhbcnyakywgjafhs0k5kpsdnrinzvdjxpz3fkwas1jsvxq3d1";
|
|
};
|
|
|
|
pname = "egg2nix";
|
|
version = "c5-git";
|
|
buildInputs = with chickenEggs; [
|
|
args
|
|
matchable
|
|
];
|
|
|
|
meta = {
|
|
description = "Generate nix-expression from CHICKEN scheme eggs";
|
|
mainProgram = "egg2nix";
|
|
homepage = "https://github.com/the-kenny/egg2nix";
|
|
license = lib.licenses.bsd3;
|
|
platforms = lib.platforms.unix;
|
|
maintainers = with lib.maintainers; [ corngood ];
|
|
};
|
|
}
|