buildah: switch to buildGoModule
This commit is contained in:
parent
1ad3b685f4
commit
fbdc10572d
@ -1,5 +1,5 @@
|
||||
{ stdenv
|
||||
, buildGoPackage
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
, installShellFiles
|
||||
, pkg-config
|
||||
@ -11,7 +11,7 @@
|
||||
, libseccomp
|
||||
}:
|
||||
|
||||
buildGoPackage rec {
|
||||
buildGoModule rec {
|
||||
pname = "buildah";
|
||||
version = "1.14.9";
|
||||
|
||||
@ -24,15 +24,12 @@ buildGoPackage rec {
|
||||
|
||||
outputs = [ "out" "man" ];
|
||||
|
||||
goPackagePath = "github.com/containers/buildah";
|
||||
vendorSha256 = null;
|
||||
|
||||
nativeBuildInputs = [ installShellFiles pkg-config ];
|
||||
buildInputs = [ gpgme libgpgerror lvm2 btrfs-progs libselinux libseccomp ];
|
||||
|
||||
patches = [ ./disable-go-module-mode.patch ];
|
||||
|
||||
buildPhase = ''
|
||||
pushd go/src/${goPackagePath}
|
||||
make GIT_COMMIT="unknown"
|
||||
make -C docs
|
||||
'';
|
||||
|
@ -1,32 +0,0 @@
|
||||
From e2d12e52b3638a320a8d69ea4b392b60f44ea57f Mon Sep 17 00:00:00 2001
|
||||
From: Mario Rodas <marsam@users.noreply.github.com>
|
||||
Date: Wed, 4 Dec 2019 21:07:33 -0500
|
||||
Subject: [PATCH] Do not check Go module-mode availability
|
||||
|
||||
Since buildah vendorizes its dependencies we use buildGoPackage which
|
||||
does not uses Go module-mode. The module-mode check will be true
|
||||
because nixpkgs uses Go 1.13 by default, and building go modules with
|
||||
buildGoPackage may lead to inconsistencies.
|
||||
---
|
||||
Makefile | 5 -----
|
||||
1 file changed, 5 deletions(-)
|
||||
|
||||
diff --git a/Makefile b/Makefile
|
||||
index 07724ce4..6383646e 100644
|
||||
--- a/Makefile
|
||||
+++ b/Makefile
|
||||
@@ -15,14 +15,8 @@ BUILDAH := buildah
|
||||
GO := go
|
||||
GO110 := 1.10
|
||||
GOVERSION := $(findstring $(GO110),$(shell go version))
|
||||
-# test for go module support
|
||||
-ifeq ($(shell go help mod >/dev/null 2>&1 && echo true), true)
|
||||
-export GO_BUILD=GO111MODULE=on $(GO) build -mod=vendor
|
||||
-export GO_TEST=GO111MODULE=on $(GO) test -mod=vendor
|
||||
-else
|
||||
export GO_BUILD=$(GO) build
|
||||
export GO_TEST=$(GO) test
|
||||
-endif
|
||||
|
||||
GIT_COMMIT ?= $(if $(shell git rev-parse --short HEAD),$(shell git rev-parse --short HEAD),$(error "git failed"))
|
||||
SOURCE_DATE_EPOCH ?= $(if $(shell date +%s),$(shell date +%s),$(error "date failed"))
|
Loading…
Reference in New Issue
Block a user