overlay/test.nix
2024-05-15 15:43:06 +02:00

10 lines
230 B
Nix

{ pkgs ? import <nixpkgs> { overlays = [ (import ./default.nix) ]; } }:
# mypython = pkgs.python3.withPackages (python-pkgs: [
# python-pkgs.salt-lint
# ]);
pkgs.mkShell {
buildInputs = with pkgs; [
salt-lint
];
}