mirror of
https://github.com/tweag/gomod2nix.git
synced 2024-11-05 01:59:08 +00:00
Merge pull request #83 from nix-community/nix-community-pkg-name
Change package name from github.com/tweag/gomod2nix to github.com/nix-community/gomod2nix
This commit is contained in:
commit
0d9952aa8c
5 changed files with 7 additions and 7 deletions
|
@ -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
2
go.mod
|
@ -1,4 +1,4 @@
|
|||
module github.com/tweag/gomod2nix
|
||||
module github.com/nix-community/gomod2nix
|
||||
|
||||
go 1.17
|
||||
|
||||
|
|
|
@ -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 = "./"
|
||||
|
|
|
@ -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"
|
||||
)
|
||||
|
||||
|
|
2
main.go
2
main.go
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue