chore: update deps

This commit is contained in:
Luj 2025-06-03 15:08:26 +02:00
parent f7d71fcc19
commit de9659ad8e
2 changed files with 31 additions and 9 deletions

24
lon.nix
View file

@ -23,12 +23,24 @@ let
fetchSource =
args@{ fetchType, ... }:
if fetchType == "git" then
builtins.fetchGit {
url = args.url;
ref = args.branch;
rev = args.revision;
narHash = args.hash;
}
builtins.fetchGit (
{
url = args.url;
ref = args.branch;
rev = args.revision;
narHash = args.hash;
submodules = args.submodules;
}
// (
if args ? lastModified then
{
inherit (args) lastModified;
shallow = true;
}
else
{ }
)
)
else if fetchType == "tarball" then
builtins.fetchTarball {
url = args.url;