Skip to content

Commit

Permalink
Merge pull request #136108 from blitz/tuxedo-keyboard
Browse files Browse the repository at this point in the history
tuxedo-keyboard: 1.0.7 -> 1.0.8
  • Loading branch information
Mic92 authored Aug 29, 2021
2 parents 6129057 + 2e6d563 commit e71c6fa
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions pkgs/os-specific/linux/tuxedo-keyboard/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

stdenv.mkDerivation rec {
pname = "tuxedo-keyboard-${kernel.version}";
version = "3.0.7";
version = "3.0.8";

src = fetchFromGitHub {
owner = "tuxedocomputers";
repo = "tuxedo-keyboard";
rev = "v${version}";
sha256 = "sha256-JloLwfJfDdVowx1hOehjxPbnaKBCAMn7SZe09SE03HU=";
sha256 = "1rv3ns4n61v18cpnp36zi47jpnqhj410yzi8b307ghiyriapbijv";
};

buildInputs = [ linuxHeaders ];
Expand All @@ -17,7 +17,10 @@ stdenv.mkDerivation rec {

installPhase = ''
mkdir -p "$out/lib/modules/${kernel.modDirVersion}"
mv src/tuxedo_keyboard.ko $out/lib/modules/${kernel.modDirVersion}
for module in clevo_acpi.ko clevo_wmi.ko tuxedo_keyboard.ko tuxedo_io/tuxedo_io.ko; do
mv src/$module $out/lib/modules/${kernel.modDirVersion}
done
'';

meta = with lib; {
Expand Down

0 comments on commit e71c6fa

Please sign in to comment.