linuxPackages.oci-seccomp-bpf-hook: 1.2.0 -> 1.2.1

Signed-off-by: Sascha Grunert <mail@saschagrunert.de>
This commit is contained in:
Sascha Grunert 2021-01-27 13:55:59 +01:00
parent ab224b550c
commit 057a240b0b
No known key found for this signature in database
GPG key ID: BEDA150F1B0AFEEC

View file

@ -10,15 +10,14 @@
buildGoModule rec {
pname = "oci-seccomp-bpf-hook";
version = "1.2.0";
version = "1.2.1";
src = fetchFromGitHub {
owner = "containers";
repo = "oci-seccomp-bpf-hook";
rev = "v${version}";
sha256 = "143x4daixzhhhpli1l14r7dr7dn3q42w8dddr16jzhhwighsirqw";
sha256 = "0zbrpv6j4gd4l36zl2dljazdm85qlqwchf0xvmnaywcj8c8b49xw";
};
vendorSha256 = null;
doCheck = false;
outputs = [ "out" "man" ];
nativeBuildInputs = [
@ -31,6 +30,10 @@ buildGoModule rec {
libseccomp
];
checkPhase = ''
go test -v ./...
'';
buildPhase = ''
make
'';