1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-03 19:15:39 +00:00
nixpkgs/pkgs/applications/virtualization/tini/default.nix

28 lines
693 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, glibc }:
2015-11-10 20:06:15 +00:00
stdenv.mkDerivation rec {
2020-05-04 10:49:49 +01: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 10:49:49 +01:00
sha256 ="1hnnvjydg7gi5gx6nibjjdnfipblh84qcpajc08nvr44rkzswck4";
2015-11-10 20:06:15 +00:00
};
2017-11-10 17:54:57 +00:00
2016-08-13 07:23:20 +01: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
nativeBuildInputs = [ cmake ];
buildInputs = [ glibc glibc.static ];
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;
};
}