feat: update flake.

This commit is contained in:
CronyAkatsuki 2025-11-07 16:32:13 +01:00
parent 37f1c553b4
commit eb64db1c80
4 changed files with 68 additions and 182 deletions

View file

@ -1,17 +1,17 @@
{ pkgs ? (
{
pkgs ? (
let
inherit (builtins) fetchTree fromJSON readFile;
inherit ((fromJSON (readFile ./flake.lock)).nodes) nixpkgs gomod2nix;
in
import (fetchTree nixpkgs.locked) {
overlays = [
(import "${fetchTree gomod2nix.locked}/overlay.nix")
];
}
)
, buildGoApplication ? pkgs.buildGoApplication
import (fetchTree nixpkgs.locked) {
overlays = [
(import "${fetchTree gomod2nix.locked}/overlay.nix")
];
}
),
buildGoApplication ? pkgs.buildGoApplication,
}:
buildGoApplication {
pname = "upfast";
version = "1.3";