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

27 lines
666 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, cmake, glibc }:
2015-11-10 20:06:15 +00:00
stdenv.mkDerivation rec {
version = "0.18.0";
pname = "tini";
2017-11-10 17:54:57 +00:00
src = fetchFromGitHub {
owner = "krallin";
repo = "tini";
rev = "v${version}";
sha256 ="1h20i3wwlbd8x4jr2gz68hgklh0lb0jj7y5xk1wvr8y58fip1rdn";
2015-11-10 20:06:15 +00:00
};
2017-11-10 17:54:57 +00:00
2016-08-13 06:23:20 +00:00
patchPhase = "sed -i /tini-static/d CMakeLists.txt";
2017-11-10 17:54:57 +00:00
2019-10-30 01:29:30 +00:00
NIX_CFLAGS_COMPILE = "-DPR_SET_CHILD_SUBREAPER=36 -DPR_GET_CHILD_SUBREAPER=37";
2017-11-10 17:54:57 +00:00
buildInputs = [ cmake glibc glibc.static ];
2017-11-10 17:54:57 +00:00
2015-11-10 20:06:15 +00:00
meta = with stdenv.lib; {
description = "A tiny but valid init for containers";
homepage = https://github.com/krallin/tini;
license = licenses.mit;
platforms = platforms.linux;
};
}