This repository has been archived on 2024-10-30. You can view files and clone it, but cannot push or open issues or pull requests.
emacs/checks/default.nix
Andrea Ciceri 893ea2f870
All checks were successful
/ test (push) Successful in 23s
[CI] Forgejo tests
2024-02-15 15:31:42 +01:00

10 lines
185 B
Nix

{
perSystem = {config, pkgs, ...}: {
checks = {
inherit (config.packages) ccrEmacs;
test = pkgs.hello.overrideDerivation (_: {
name = "test";
});
};
};
}