format c_

Pegasust 2023-02-05 17:08:36 -07:00
parent 00e7a15b19
commit 29e5db764d
1 changed files with 106 additions and 95 deletions

201
c_.nix
View File

@ -1,100 +1,111 @@
# a small helper that only builds on top of builtins functions # a small helper that only builds on top of builtins functions
{src}@inputs: { src }@inputs:
builtins // (let builtins // (
formatSecondsSinceEpoch = t: let
let formatSecondsSinceEpoch = t:
rem = x: y: x - x / y * y; let
days = t / 86400; rem = x: y: x - x / y * y;
secondsInDay = rem t 86400; days = t / 86400;
hours = secondsInDay / 3600; secondsInDay = rem t 86400;
minutes = (rem secondsInDay 3600) / 60; hours = secondsInDay / 3600;
seconds = rem t 60; minutes = (rem secondsInDay 3600) / 60;
seconds = rem t 60;
# Courtesy of https://stackoverflow.com/a/32158604. # Courtesy of https://stackoverflow.com/a/32158604.
z = days + 719468; z = days + 719468;
era = (if z >= 0 then z else z - 146096) / 146097; era = (if z >= 0 then z else z - 146096) / 146097;
doe = z - era * 146097; doe = z - era * 146097;
yoe = (doe - doe / 1460 + doe / 36524 - doe / 146096) / 365; yoe = (doe - doe / 1460 + doe / 36524 - doe / 146096) / 365;
y = yoe + era * 400; y = yoe + era * 400;
doy = doe - (365 * yoe + yoe / 4 - yoe / 100); doy = doe - (365 * yoe + yoe / 4 - yoe / 100);
mp = (5 * doy + 2) / 153; mp = (5 * doy + 2) / 153;
d = doy - (153 * mp + 2) / 5 + 1; d = doy - (153 * mp + 2) / 5 + 1;
m = mp + (if mp < 10 then 3 else -9); m = mp + (if mp < 10 then 3 else -9);
y' = y + (if m <= 2 then 1 else 0); y' = y + (if m <= 2 then 1 else 0);
pad = s: if builtins.stringLength s < 2 then "0" + s else s; pad = s: if builtins.stringLength s < 2 then "0" + s else s;
in "${toString y'}${pad (toString m)}${pad (toString d)}${pad (toString hours)}" in
+ "${pad (toString minutes)}${pad (toString seconds)}"; "${toString y'}${pad (toString m)}${pad (toString d)}${pad (toString hours)}"
+ "${pad (toString minutes)}${pad (toString seconds)}";
fetchTree = fetchTree =
# this is the value of flake.lock#lock.nodes.${input_name}.locked # this is the value of flake.lock#lock.nodes.${input_name}.locked
{type { type
, host? "" , host ? ""
, owner? "" , owner ? ""
, repo? "" , repo ? ""
, rev? "" , rev ? ""
, submodules? "" , submodules ? ""
, path? "" , path ? ""
, narHash? null , narHash ? null
, lastModified? 0 , lastModified ? 0
}@info: }@info:
if info.type == "github" then if info.type == "github" then
{ outPath = {
fetchTarball outPath =
({ url = "https://api.${info.host or "github.com"}/repos/" fetchTarball
+ "${info.owner}/${info.repo}/tarball/${info.rev}"; } ({
// (if info ? narHash then { sha256 = info.narHash; } else {}) url = "https://api.${info.host or "github.com"}/repos/"
); + "${info.owner}/${info.repo}/tarball/${info.rev}";
rev = info.rev; }
shortRev = builtins.substring 0 7 info.rev; // (if info ? narHash then { sha256 = info.narHash; } else { })
lastModified = info.lastModified; );
lastModifiedDate = formatSecondsSinceEpoch info.lastModified; rev = info.rev;
narHash = info.narHash; shortRev = builtins.substring 0 7 info.rev;
} lastModified = info.lastModified;
else if info.type == "git" then lastModifiedDate = formatSecondsSinceEpoch info.lastModified;
{ outPath = narHash = info.narHash;
builtins.fetchGit }
({ url = info.url; } else if info.type == "git" then
// (if info ? rev then { inherit (info) rev; } else {}) {
// (if info ? ref then { inherit (info) ref; } else {}) outPath =
// (if info ? submodules then { inherit (info) submodules; } else {}) builtins.fetchGit
); ({ url = info.url; }
lastModified = info.lastModified; // (if info ? rev then { inherit (info) rev; } else { })
lastModifiedDate = formatSecondsSinceEpoch info.lastModified; // (if info ? ref then { inherit (info) ref; } else { })
narHash = info.narHash; // (if info ? submodules then { inherit (info) submodules; } else { })
} // (if info ? rev then { );
rev = info.rev; lastModified = info.lastModified;
shortRev = builtins.substring 0 7 info.rev; lastModifiedDate = formatSecondsSinceEpoch info.lastModified;
} else { narHash = info.narHash;
}) } // (if info ? rev then {
else if info.type == "path" then rev = info.rev;
{ outPath = builtins.path { shortRev = builtins.substring 0 7 info.rev;
path = if builtins.substring 0 1 info.path != "/" } else { })
then src + ("/" + info.path) # make this absolute path by prepending ./ else if info.type == "path" then
else info.path; # it's already an absolute path {
}; outPath = builtins.path {
narHash = info.narHash; path =
} if builtins.substring 0 1 info.path != "/"
else if info.type == "tarball" then then src + ("/" + info.path) # make this absolute path by prepending ./
{ outPath = else info.path; # it's already an absolute path
fetchTarball };
({ inherit (info) url; } narHash = info.narHash;
// (if info ? narHash then { sha256 = info.narHash; } else {}) }
); else if info.type == "tarball" then
} {
else if info.type == "gitlab" then outPath =
{ inherit (info) rev narHash lastModified; fetchTarball
outPath = ({ inherit (info) url; }
fetchTarball // (if info ? narHash then { sha256 = info.narHash; } else { })
({ url = "https://${info.host or "gitlab.com"}/api/v4/projects/${info.owner}%2F${info.repo}/repository/archive.tar.gz?sha=${info.rev}"; } );
// (if info ? narHash then { sha256 = info.narHash; } else {}) }
); else if info.type == "gitlab" then
shortRev = builtins.substring 0 7 info.rev; {
} inherit (info) rev narHash lastModified;
else outPath =
# FIXME: add Mercurial, tarball inputs. fetchTarball
throw "flake input has unsupported input type '${info.type}'"; ({ url = "https://${info.host or "gitlab.com"}/api/v4/projects/${info.owner}%2F${info.repo}/repository/archive.tar.gz?sha=${info.rev}"; }
in { // (if info ? narHash then { sha256 = info.narHash; } else { })
inherit fetchTree; );
}) shortRev = builtins.substring 0 7 info.rev;
}
else
# FIXME: add Mercurial, tarball inputs.
throw "flake input has unsupported input type '${info.type}'";
in
{
inherit fetchTree;
}
)