There we go, better

This commit is contained in:
Benson Chu 2024-01-05 09:03:10 -06:00
parent 98c15fc613
commit 89e2b16a48

View file

@ -5,10 +5,10 @@ let
bash-drv = pkgs.stdenv.mkDerivation {
name = "bash-config";
src = inputs.bashcfg-input;
phases = [ "unpackPhase" "installPhase" ];
dontBuild = true;
installPhase = ''
mkdir -p $out
cp $src/* $out
cp *.sh $out
'';
};
in