# Importada de nixpkgs por `takana import-nix` (Etapa G). PUNTO DE PARTIDA, no final: # - el build usa el lab de takana (zig-cc / musl estático), NO el stdenv de nix ⇒ revisá # compiler/link/phases y adaptá hasta que compile. # - las deps van con su nombre NIX; remapealas a las recetas del corpus si difieren. name = "jump" version = "0.67.0" license = "MIT" [source] repo = "https://github.com/gsamokovarov/jump" commit = "0e9fabf0c06a0c4f847081e7138b3478c3959dfd" [build] compiler = "zig-cc" target = "x86_64-linux-musl" link = "static" flags = [] [deps] build = ["go"] [build.phases] configure = "true" compile = "export GOCACHE=/tmp/gocache GOPATH=/tmp/gopath GOTOOLCHAIN=local CGO_ENABLED=0 GOFLAGS=-mod=vendor GOPROXY=off; go build -trimpath -ldflags=-buildid= -o /out/usr/bin/jump ." install = "true"