all repos — erl @ c8ab7c849959313a035bf9e448d110e794190a4f

Execute Reload Loop

initial commit

Alan Pearce
commit

c8ab7c849959313a035bf9e448d110e794190a4f

1 file changed, 22 insertions(+), 0 deletions(-)

changed files
A default.nix
@@ -0,0 +1,22 @@
+{ + 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, +}: + +buildGoApplication { + pname = "erl"; + version = "0-unstable-2025-08-30"; + pwd = ./.; + src = ./.; + modules = ./gomod2nix.toml; +}