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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
649 B
Nix
Raw Normal View History

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