chore: bump nix flake

This commit is contained in:
Matthias Ahouansou
2025-04-28 01:43:48 +01:00
parent 3171b779c6
commit bdf2014cf4
6 changed files with 122 additions and 94 deletions

View File

@@ -2,9 +2,18 @@
{ default
, dockerTools
, lib
, tini
, pkgs
}:
let
# See https://github.com/krallin/tini/pull/223
tini = pkgs.tini.overrideAttrs {
patches = [ (pkgs.fetchpatch {
url = "https://patch-diff.githubusercontent.com/raw/krallin/tini/pull/223.patch";
hash = "sha256-i6xcf+qpjD+7ZQY3ueiDaxO4+UA2LutLCZLNmT+ji1s=";
})
];
};
in
dockerTools.buildImage {
name = default.pname;
tag = "next";