nixos-config/lib/fetchers/fetch-ugee-driver/default.nix

9 lines
227 B
Nix
Raw Normal View History

2024-11-15 08:31:51 +00:00
{ fetchzip, lib }:
2025-01-12 09:57:14 +00:00
{ fileId, pid, ext ? "gz", ... }@args:
2024-11-15 08:31:51 +00:00
2025-01-12 09:57:14 +00:00
let args' = lib.removeAttrs args [ "fileId" "pid" "ext" ];
in fetchzip (args' // {
2024-11-15 08:31:51 +00:00
url = "https://www.ugee.com/download/file/id/${fileId}/pid/${pid}/ext/${ext}";
})