19 lines
286 B
Nix
19 lines
286 B
Nix
{
|
|
sources ? import ./npins,
|
|
system ? builtins.currentSystem,
|
|
pkgs ? import sources.nixpkgs {
|
|
inherit system;
|
|
config = { };
|
|
overlays = [ ];
|
|
},
|
|
}:
|
|
{
|
|
shell = pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
npins
|
|
actionlint
|
|
action-validator
|
|
];
|
|
};
|
|
}
|