Skip to content

Commit

Permalink
mwprocapture: 1.2.4177 -> 1.3.0.4236 (#125110)
Browse files Browse the repository at this point in the history
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
  • Loading branch information
pwetzel and SuperSandro2000 authored Jun 5, 2021
1 parent 5045c93 commit f614ab7
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 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";
url = "https://www.magewell.com/files/drivers/ProCaptureForLinux_${version}.tar.gz";
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 f614ab7

Please sign in to comment.