81b2f19eb7
"subcomand" -> "subcommand"
49 lines
1.2 KiB
Nix
49 lines
1.2 KiB
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, iproute2
|
|
, iptables
|
|
, makeWrapper
|
|
, procps
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "gvisor";
|
|
version = "20221102.1";
|
|
|
|
# gvisor provides a synthetic go branch (https://github.com/google/gvisor/tree/go)
|
|
# that can be used to build gvisor without bazel.
|
|
# For updates, you should stick to the commits labeled "Merge release-** (automated)"
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "google";
|
|
repo = "gvisor";
|
|
rev = "bf8eeee3a9eb966bc72c773da060a3c8bb73b8ff";
|
|
sha256 = "sha256-rADQsJ+AnBVlfQURGJl1xR6Ad5NyRWSrBSpOFMRld+o=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-iGLWxx/Kn1QaJTNOZcc+mwoF3ecEDOkaqmA0DH4pdgU=";
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
CGO_ENABLED = 0;
|
|
|
|
ldflags = [ "-s" "-w" ];
|
|
|
|
subPackages = [ "runsc" "shim" ];
|
|
|
|
postInstall = ''
|
|
# Needed for the 'runsc do' subcommand
|
|
wrapProgram $out/bin/runsc \
|
|
--prefix PATH : ${lib.makeBinPath [ iproute2 iptables procps ]}
|
|
mv $out/bin/shim $out/bin/containerd-shim-runsc-v1
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Application Kernel for Containers";
|
|
homepage = "https://github.com/google/gvisor";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ andrew-d gpl ];
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|