21 lines
364 B
Nix
21 lines
364 B
Nix
{
|
|
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";
|
|
};
|
|
})
|