64 lines
1.4 KiB
Nix
64 lines
1.4 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, buildGoModule
|
|
, go-md2man
|
|
, installShellFiles
|
|
, pkg-config
|
|
, which
|
|
, libapparmor
|
|
, apparmor-parser
|
|
, libseccomp
|
|
, libselinux
|
|
, makeWrapper
|
|
, procps
|
|
, nixosTests
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "runc";
|
|
version = "1.0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "opencontainers";
|
|
repo = "runc";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-xd46HlZenTNCzmnCGN3x7Ah8pPLwbG9LSMGmiPIPyv0=";
|
|
};
|
|
|
|
vendorSha256 = null;
|
|
outputs = [ "out" "man" ];
|
|
|
|
nativeBuildInputs = [ go-md2man installShellFiles makeWrapper pkg-config which ];
|
|
|
|
buildInputs = [ libselinux libseccomp libapparmor ];
|
|
|
|
makeFlags = [ "BUILDTAGS+=seccomp" ];
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
patchShebangs .
|
|
make ${toString makeFlags} runc man
|
|
runHook postBuild
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
install -Dm755 runc $out/bin/runc
|
|
installManPage man/*/*.[1-9]
|
|
wrapProgram $out/bin/runc \
|
|
--prefix PATH : ${lib.makeBinPath [ procps ]} \
|
|
--prefix PATH : /run/current-system/systemd/bin
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru.tests = { inherit (nixosTests) cri-o docker podman; };
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/opencontainers/runc";
|
|
description = "A CLI tool for spawning and running containers according to the OCI specification";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ offline ] ++ teams.podman.members;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|