with import { }; { test = pkgs.stdenv.mkDerivation { src = pkgs.nix-gitignore.gitignoreSource [ "!.git" ] ./.; name = "dotfiles-test"; phases = [ "unpackPhase" "buildPhase" ]; buildInputs = [ nixfmt gitMinimal shellcheck ]; buildPhase = '' patchShebangs . ./tests.sh touch $out ''; }; }