more dir renaming

This commit is contained in:
Don Harper 2024-03-21 22:35:01 -05:00
parent 9c261524d9
commit 610c1175bc
7 changed files with 2 additions and 2 deletions

View file

@ -0,0 +1,20 @@
{ stdenv }:
stdenv.mkDerivation rec {
name = "kanshi-fix-${version}";
version = "1.4";
src = ./.;
nativeBuildInputs = [ ];
buildInputs = [ ];
dontConfigure = true;
buildPhase = ''
chmod 0755 kanshi-fix
'';
installPhase = ''
mkdir -p $out/bin
cp kanshi-fix $out/bin
'';
}