Skip to content

Commit

Permalink
dockerTools.tarsum: Fix upstream import
Browse files Browse the repository at this point in the history
  • Loading branch information
srhb committed Mar 26, 2018
1 parent 8fe59b5 commit 4874ce1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pkgs/build-support/docker/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ rec {
cp ${./tarsum.go} tarsum.go
export GOPATH=$(pwd)
mkdir src
ln -sT ${docker.src}/components/engine/pkg/tarsum src/tarsum
mkdir -p src/github.com/docker/docker/pkg
ln -sT ${docker.src}/components/engine/pkg/tarsum src/github.com/docker/docker/pkg/tarsum
go build
cp tarsum $out
Expand Down
2 changes: 1 addition & 1 deletion pkgs/build-support/docker/tarsum.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"io"
"io/ioutil"
"os"
"tarsum"
"github.com/docker/docker/pkg/tarsum"
)

func main() {
Expand Down

0 comments on commit 4874ce1

Please sign in to comment.