Change package name from github.com/tweag/gomod2nix to github.com/nix-community/gomod2nix

This commit is contained in:
adisbladis 2022-08-28 06:27:35 +12:00
parent bb6a0be71c
commit 0eefe2b57d
5 changed files with 7 additions and 7 deletions

View file

@ -38,7 +38,7 @@ buildGoApplication {
meta = {
description = "Convert applications using Go modules -> Nix";
homepage = "https://github.com/tweag/gomod2nix";
homepage = "https://github.com/nix-community/gomod2nix";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.adisbladis ];
};

2
go.mod
View file

@ -1,4 +1,4 @@
module github.com/tweag/gomod2nix
module github.com/nix-community/gomod2nix
go 1.17

View file

@ -7,8 +7,8 @@ import (
log "github.com/sirupsen/logrus"
"github.com/spf13/cobra"
generate "github.com/tweag/gomod2nix/internal/generate"
schema "github.com/tweag/gomod2nix/internal/schema"
generate "github.com/nix-community/gomod2nix/internal/generate"
schema "github.com/nix-community/gomod2nix/internal/schema"
)
const directoryDefault = "./"

View file

@ -17,8 +17,8 @@ import (
"github.com/nix-community/go-nix/pkg/nar"
log "github.com/sirupsen/logrus"
"github.com/tweag/gomod2nix/internal/lib"
schema "github.com/tweag/gomod2nix/internal/schema"
"github.com/nix-community/gomod2nix/internal/lib"
schema "github.com/nix-community/gomod2nix/internal/schema"
"golang.org/x/mod/modfile"
)

View file

@ -1,6 +1,6 @@
package main
import "github.com/tweag/gomod2nix/internal/cmd"
import "github.com/nix-community/gomod2nix/internal/cmd"
func main() {
cmd.Execute()