nftable-migration
 1# https://github.com/chmouel/chmouzies/tree/master/kubernetes
 2{
 3  stdenv,
 4  fetchFromGitLab,
 5  python313,
 6  installShellFiles,
 7}:
 8
 9stdenv.mkDerivation rec {
10  name = "chmouzies-ai";
11  pname = "chmouzies-ai";
12
13  version = "0-unstable-2025-09-30";
14
15  src = fetchFromGitLab {
16    owner = "chmouel";
17    repo = "chmouzies";
18    rev = "10773a982503829e5f276a3bd8fd526dab4f92d3";
19    sha256 = "sha256-Lr4tYzgEhvVhJhSRDGuUlrp7XP2iUNX7H2nizlEko3Q=";
20  };
21
22  propagatedBuildInputs = [ python313 ];
23  nativeBuildInputs = [ installShellFiles ];
24
25  builder = ./builder.ai.sh;
26}