initial commit
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; +}