nixpkgs/pkgs/applications/virtualization/runc/default.nix

61 lines
1.4 KiB
Nix
Raw Normal View History

2020-04-12 12:08:47 +00:00
{ lib
, fetchFromGitHub
, buildGoPackage
, go-md2man
, installShellFiles
, pkg-config
, which
, libapparmor
, apparmor-parser
, libseccomp
2020-05-13 11:37:48 +00:00
, libselinux
, makeWrapper
, procps
2020-05-19 00:41:00 +00:00
, nixosTests
2020-04-12 12:08:47 +00:00
}:
2016-05-21 16:18:24 +00:00
buildGoPackage rec {
pname = "runc";
version = "1.0.0-rc93";
2016-05-21 16:18:24 +00:00
src = fetchFromGitHub {
owner = "opencontainers";
repo = "runc";
2017-01-11 08:32:26 +00:00
rev = "v${version}";
sha256 = "008d5wkznic80n5q1vwx727qn5ifalc7cydq68hc1gk9wrhna4v4";
2016-05-21 16:18:24 +00:00
};
goPackagePath = "github.com/opencontainers/runc";
outputs = [ "out" "man" ];
2016-05-21 16:18:24 +00:00
nativeBuildInputs = [ go-md2man installShellFiles makeWrapper pkg-config which ];
2016-05-21 16:18:24 +00:00
buildInputs = [ libselinux libseccomp libapparmor ];
2020-05-13 11:37:48 +00:00
makeFlags = [ "BUILDTAGS+=seccomp" ];
2016-05-21 16:18:24 +00:00
buildPhase = ''
cd go/src/${goPackagePath}
2016-05-21 16:18:24 +00:00
patchShebangs .
2020-04-12 12:08:47 +00:00
make ${toString makeFlags} runc man
2016-05-21 16:18:24 +00:00
'';
installPhase = ''
install -Dm755 runc $out/bin/runc
2020-05-10 01:24:04 +00:00
installManPage man/*/*.[1-9]
wrapProgram $out/bin/runc \
--prefix PATH : ${lib.makeBinPath [ procps ]} \
--prefix PATH : /run/current-system/systemd/bin
2016-05-21 16:18:24 +00:00
'';
2020-11-22 00:59:08 +00:00
passthru.tests = { inherit (nixosTests) cri-o docker podman; };
2020-05-19 00:41:00 +00:00
2020-04-12 12:08:47 +00:00
meta = with lib; {
homepage = "https://github.com/opencontainers/runc";
2016-05-21 16:18:24 +00:00
description = "A CLI tool for spawning and running containers according to the OCI specification";
license = licenses.asl20;
2020-04-03 10:11:26 +00:00
maintainers = with maintainers; [ offline ] ++ teams.podman.members;
2016-05-21 16:18:24 +00:00
platforms = platforms.linux;
};
}