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
34 lines
644 B
Nix
34 lines
644 B
Nix
# Fetches a chicken egg from henrietta using `chicken-install -r'
|
|
# See: http://wiki.call-cc.org/chicken-projects/egg-index-4.html
|
|
|
|
{
|
|
lib,
|
|
stdenvNoCC,
|
|
chicken,
|
|
}:
|
|
{
|
|
name,
|
|
version,
|
|
md5 ? "",
|
|
sha256 ? "",
|
|
}:
|
|
|
|
if md5 != "" then
|
|
throw "fetchegg does not support md5 anymore, please use sha256"
|
|
else
|
|
stdenvNoCC.mkDerivation {
|
|
name = "chicken-${name}-export-${version}";
|
|
builder = ./builder.sh;
|
|
nativeBuildInputs = [ chicken ];
|
|
|
|
outputHashAlgo = "sha256";
|
|
outputHashMode = "recursive";
|
|
outputHash = sha256;
|
|
|
|
inherit version;
|
|
|
|
eggName = name;
|
|
|
|
impureEnvVars = lib.fetchers.proxyImpureEnvVars;
|
|
}
|