chore(nix): update package reference

This commit is contained in:
tux
2026-09-08 03:51:15 +05:30
parent 6c13858d46
commit a86a290e88

View File

@@ -1,12 +1,12 @@
{
callPackage,
go,
}: let
mainPkg = callPackage ./default.nix {};
}:
let
mainPkg = callPackage ./package.nix { };
in
mainPkg.overrideAttrs (oa: {
nativeBuildInputs =
[
nativeBuildInputs = [
go
]
++ (oa.nativeBuildInputs or [ ]);