rm-sync/shell.nix

10 lines
179 B
Nix
Raw Normal View History

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