attempt to add fix for kanshi and usb-c dock

This commit is contained in:
Don Harper 2023-07-25 21:28:08 -05:00
parent ffecb0e040
commit 171d7390d5
5 changed files with 34 additions and 0 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
'';
}