rm-sync/shell.nix

13 lines
217 B
Nix
Raw Permalink Normal View History

2025-02-13 13:11:50 +01:00
{ pkgs ? import <nixpkgs> { }
, shellHook ? ""
}:
2025-02-13 12:11:41 +01:00
let
default = pkgs.callPackage ./default.nix { };
in
pkgs.mkShell {
2025-02-13 13:11:50 +01:00
inherit shellHook;
2025-02-13 12:11:41 +01:00
inputsFrom = [ default ];
buildInputs = [ default pkgs.shellcheck ];
}