fran/packages/h/httpgd.nix
copilot-swe-agent[bot] 789df109ed Refactor: Pass 'final' only to packages that need it (fwildclusterboot)
Co-authored-by: dwinkler1 <22460147+dwinkler1@users.noreply.github.com>
2026-01-19 05:49:50 +00:00

17 lines
307 B
Nix

{
prev,
fetchfromGitHubJSONFile,
versionsDir,
}:
prev.rPackages.buildRPackage {
name = "httpgd";
src = fetchfromGitHubJSONFile "${versionsDir}/httpgd.json";
propagatedBuildInputs = builtins.attrValues {
inherit
(prev.rPackages)
unigd
cpp11
AsioHeaders
;
};
}