overlay/test.nix

12 lines
231 B
Nix
Raw Normal View History

2023-10-04 21:08:14 +00:00
{ pkgs ? import <nixpkgs> { overlays = [ (import ./default.nix) ]; } }:
2024-04-30 15:47:35 +00:00
let
mypython = pkgs.python3.withPackages (python-pkgs: [
python-pkgs.salt-lint
]);
in
2023-10-04 21:08:14 +00:00
pkgs.mkShell {
buildInputs = with pkgs; [
2024-04-30 15:47:35 +00:00
mypython
2023-10-04 21:08:14 +00:00
];
}