mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
518eca8256
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/tini/versions. These checks were done: - built on NixOS - ran ‘/nix/store/h0h2qyxwrvsjy47m1xyv7sxzd2j0ilsi-tini-0.18.0/bin/tini -h’ got 0 exit code - ran ‘/nix/store/h0h2qyxwrvsjy47m1xyv7sxzd2j0ilsi-tini-0.18.0/bin/tini --version’ and found version 0.18.0 - found 0.18.0 with grep in /nix/store/h0h2qyxwrvsjy47m1xyv7sxzd2j0ilsi-tini-0.18.0 - directory tree listing: https://gist.github.com/c992fd0a24dfc0365d6b62ac567d395c
30 lines
692 B
Nix
30 lines
692 B
Nix
{ stdenv, fetchFromGitHub, cmake, glibc }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.18.0";
|
|
name = "tini-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "krallin";
|
|
repo = "tini";
|
|
rev = "v${version}";
|
|
sha256 ="1h20i3wwlbd8x4jr2gz68hgklh0lb0jj7y5xk1wvr8y58fip1rdn";
|
|
};
|
|
|
|
patchPhase = "sed -i /tini-static/d CMakeLists.txt";
|
|
|
|
NIX_CFLAGS_COMPILE = [
|
|
"-DPR_SET_CHILD_SUBREAPER=36"
|
|
"-DPR_GET_CHILD_SUBREAPER=37"
|
|
];
|
|
|
|
buildInputs = [ cmake glibc glibc.static ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A tiny but valid init for containers";
|
|
homepage = https://github.com/krallin/tini;
|
|
license = licenses.mit;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|