00422d6a8b
(cherry picked from commit 6176cf75c6e9767fd078aa5bac9970b9e9d3d669)
28 lines
695 B
Nix
28 lines
695 B
Nix
{ stdenv, fetchFromGitHub, cmake, glibc }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.19.0";
|
|
pname = "tini";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "krallin";
|
|
repo = "tini";
|
|
rev = "v${version}";
|
|
sha256 ="1hnnvjydg7gi5gx6nibjjdnfipblh84qcpajc08nvr44rkzswck4";
|
|
};
|
|
|
|
patchPhase = "sed -i /tini-static/d CMakeLists.txt";
|
|
|
|
NIX_CFLAGS_COMPILE = "-DPR_SET_CHILD_SUBREAPER=36 -DPR_GET_CHILD_SUBREAPER=37";
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [ glibc glibc.static ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A tiny but valid init for containers";
|
|
homepage = "https://github.com/krallin/tini";
|
|
license = licenses.mit;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|