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
645 B
Nix
Raw Normal View History

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