rm-sync/shell.nix

12 lines
217 B
Nix

{ pkgs ? import <nixpkgs> { }
, shellHook ? ""
}:
let
default = pkgs.callPackage ./default.nix { };
in
pkgs.mkShell {
inherit shellHook;
inputsFrom = [ default ];
buildInputs = [ default pkgs.shellcheck ];
}