linuxPackages.tuxedo-drivers: 4.14.0 -> 4.15.4

authored by

Martin Woods and committed by
r-vdp
66aa8b29 1bdb7730

+16 -2
+4 -2
pkgs/os-specific/linux/tuxedo-drivers/default.nix
··· 11 11 12 12 stdenv.mkDerivation (finalAttrs: { 13 13 pname = "tuxedo-drivers-${kernel.version}"; 14 - version = "4.14.0"; 14 + version = "4.15.4"; 15 15 16 16 src = fetchFromGitLab { 17 17 group = "tuxedocomputers"; 18 18 owner = "development/packages"; 19 19 repo = "tuxedo-drivers"; 20 20 rev = "v${finalAttrs.version}"; 21 - hash = "sha256-79YZaK8WrHOxSUJWxi4lc+foh4xz3EgRnjw+OrL8yqU="; 21 + hash = "sha256-WJeju+czbCw03ALW7yzGAFENCEAvDdKqHvedchd7NVY="; 22 22 }; 23 + 24 + patches = [ ./no-cp-etc-usr.patch ]; 23 25 24 26 buildInputs = [ pahole ]; 25 27 nativeBuildInputs = [ kmod ] ++ kernel.moduleBuildDependencies;
+12
pkgs/os-specific/linux/tuxedo-drivers/no-cp-etc-usr.patch
··· 1 + diff --git a/Makefile b/Makefile 2 + index 75a6bc1..6021d42 100644 3 + --- a/Makefile 4 + +++ b/Makefile 5 + @@ -30,7 +30,6 @@ all: 6 + 7 + install: all 8 + make -C $(KDIR) M=$(PWD) $(MAKEFLAGS) modules_install 9 + - cp -r etc usr / 10 + 11 + clean: 12 + make -C $(KDIR) M=$(PWD) $(MAKEFLAGS) clean