summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Wetzel <phil@audido.com>2021-05-31 13:19:12 -0400
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-06-28 08:37:52 -0700
commit9af0e6e0766248e3bed91bbba9afa18f2e3a14b6 (patch)
tree6445b0435dd225cdf8134a3d3fe08759b7744952
parentMerge pull request #128446 from maxeaubrey/21.05_go_1.15 (diff)
downloadnixpkgs-9af0e6e0766248e3bed91bbba9afa18f2e3a14b6.tar.gz
mwprocapture: 1.2.4177 -> 1.3.0.4236
(cherry picked from commit 4f22c47193b2608d4d28cd831d54c5bd384a29a5)
-rw-r--r--pkgs/os-specific/linux/mwprocapture/default.nix12
1 files changed, 5 insertions, 7 deletions
diff --git a/pkgs/os-specific/linux/mwprocapture/default.nix b/pkgs/os-specific/linux/mwprocapture/default.nix
index c21cf2bb6482..6aebc0dd6c8b 100644
--- a/pkgs/os-specific/linux/mwprocapture/default.nix
+++ b/pkgs/os-specific/linux/mwprocapture/default.nix
@@ -2,9 +2,6 @@
with lib;
-# The Magewell Pro Capture drivers are not supported for kernels older than 3.2
-assert versionAtLeast kernel.version "3.2.0";
-
let
bits =
if stdenv.is64bit then "64"
@@ -14,15 +11,15 @@ let
in
stdenv.mkDerivation rec {
- name = "mwprocapture-1.2.${version}-${kernel.version}";
- version = "4177";
+ name = "mwprocapture-1.3.0.${version}-${kernel.version}";
+ version = "4236";
src = fetchurl {
url = "http://www.magewell.com/files/drivers/ProCaptureForLinux_${version}.tar.gz";
- sha256 = "1nf51w9yixpvr767k49sfdb9n9rv5qc72f5yki1mkghbmabw7vys";
+ sha256 = "1mfgj84km276sq5i8dny1vqp2ycqpvgplrmpbqwnk230d0w3qs74";
};
- nativeBuildInputs = [ kernel.moduleBuildDependencies ];
+ nativeBuildInputs = kernel.moduleBuildDependencies;
preConfigure =
''
@@ -63,5 +60,6 @@ stdenv.mkDerivation rec {
license = licenses.unfreeRedistributable;
maintainers = with maintainers; [ MP2E ];
platforms = platforms.linux;
+ broken = kernel.kernelOlder "3.2.0";
};
}