about summary refs log tree commit diff
path: root/pkgs/applications/virtualization/tini/default.nix
blob: 9eeb8134f5958e066200ce47e875a00fb6a06a9b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ lib, stdenv, fetchFromGitHub, cmake }:

stdenv.mkDerivation rec {
  version = "0.19.0";
  pname = "tini";

  src = fetchFromGitHub {
    owner = "krallin";
    repo = "tini";
    rev = "v${version}";
    sha256 ="1hnnvjydg7gi5gx6nibjjdnfipblh84qcpajc08nvr44rkzswck4";
  };

  postPatch = "sed -i /tini-static/d CMakeLists.txt";

  env.NIX_CFLAGS_COMPILE = "-DPR_SET_CHILD_SUBREAPER=36 -DPR_GET_CHILD_SUBREAPER=37";

  nativeBuildInputs = [ cmake ];

  meta = with lib; {
    description = "A tiny but valid init for containers";
    homepage = "https://github.com/krallin/tini";
    license = licenses.mit;
    platforms = platforms.linux;
    mainProgram = "tini";
  };
}