action attic image

This commit is contained in:
Elijah McMorris 2025-08-25 22:31:32 -07:00
parent 64a3352bbf
commit 63f25c211a
Signed by: NexVeridian
SSH key fingerprint: SHA256:bsA1SKZxuEcEVHAy3gY1HUeM5ykRJl0U0kQHQn0hMg8

View file

@ -0,0 +1,21 @@
{
docker-nixpkgs,
pkgs,
attic-client,
nodejs_24,
nix-fast-build,
}:
(docker-nixpkgs.nix.override {
nix = pkgs.nixVersions.latest;
extraContents = [
attic-client
nodejs_24
nix-fast-build
];
}).overrideAttrs
(prev: {
meta = (prev.meta or { }) // {
description = "Forgejo action image, with Nix and Attic client";
};
})