overlay/test.nix
2024-04-30 17:47:35 +02:00

12 lines
231 B
Nix

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