mirror of
https://github.com/tweag/gomod2nix.git
synced 2024-11-05 01:59:08 +00:00
1ffea526a0
This makes it possible to generate packages that you do not have a local checkout for, e.g. running: `gomod2nix generate --outdir example/ golang.org/x/tools/cmd/stringer` This will be useful for packaging dependencies that you are not developing, but just simply packaging.
19 lines
552 B
Modula-2
19 lines
552 B
Modula-2
module github.com/tweag/gomod2nix
|
|
|
|
go 1.17
|
|
|
|
require (
|
|
github.com/BurntSushi/toml v1.1.0
|
|
github.com/nix-community/go-nix v0.0.0-20220612195009-5f5614f7ca47
|
|
github.com/sirupsen/logrus v1.8.1
|
|
github.com/spf13/cobra v1.4.0
|
|
golang.org/x/mod v0.5.1
|
|
golang.org/x/tools v0.0.0-20210106214847-113979e3529a
|
|
)
|
|
|
|
require (
|
|
github.com/inconshreveable/mousetrap v1.0.0 // indirect
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
golang.org/x/sys v0.0.0-20220610221304-9f5ed59c137d // indirect
|
|
golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f // indirect
|
|
)
|