docker-nixpkgs/images/action-attic/default.nix
2025-08-25 22:38:44 -07:00

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";
};
})