mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
62 lines
1.4 KiB
Nix
62 lines
1.4 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, buildGoModule
|
|
, go-md2man
|
|
, installShellFiles
|
|
, pkg-config
|
|
, which
|
|
, libapparmor
|
|
, libseccomp
|
|
, libselinux
|
|
, makeWrapper
|
|
, nixosTests
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "runc";
|
|
version = "1.1.15";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "opencontainers";
|
|
repo = "runc";
|
|
rev = "v${version}";
|
|
hash = "sha256-y8TcMyNRkVfmNkumhohBoyiU6GM8/yLXT/CTFPmXlU4=";
|
|
};
|
|
|
|
vendorHash = 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 : /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 = "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;
|
|
mainProgram = "runc";
|
|
};
|
|
}
|