Files
clan-core/pkgs/generate-test-vars/flake-module.nix
2025-04-21 15:18:14 +02:00

18 lines
302 B
Nix

{ ... }:
{
perSystem =
{
config,
pkgs,
...
}:
{
# devShells.vars-generator = pkgs.callPackage ./shell.nix {
# };
packages.generate-test-vars = pkgs.python3.pkgs.callPackage ./default.nix {
inherit (config.packages) clan-cli;
};
};
}