Skip to content

Commit

Permalink
mwprocapture: 1.2.4177 -> 1.3.0.4236
Browse files Browse the repository at this point in the history
  • Loading branch information
pwetzel committed Jun 2, 2021
1 parent 6933d06 commit 4f22c47
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions pkgs/os-specific/linux/mwprocapture/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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 =
''
Expand Down Expand Up @@ -63,5 +60,6 @@ stdenv.mkDerivation rec {
license = licenses.unfreeRedistributable;
maintainers = with maintainers; [ MP2E ];
platforms = platforms.linux;
broken = kernel.kernelOlder "3.2.0";
};
}

0 comments on commit 4f22c47

Please sign in to comment.