15 lines
228 B
Nix
15 lines
228 B
Nix
{
|
|
stdenv,
|
|
lib,
|
|
bash,
|
|
}:
|
|
stdenv.mkDerivation {
|
|
name = "mysql-scripts";
|
|
src = ./scripts;
|
|
buildInputs = [ bash ];
|
|
#nativeBuildInputs = [lib.makeWrapper];
|
|
installPhase = ''
|
|
install -D --target $out/bin *
|
|
'';
|
|
}
|