28 lines
693 B
Nix
Raw Normal View History

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