2022-05-10 21:52:26 +00:00
|
|
|
{ lib, stdenv, fetchurl, kernel, alsa-lib }:
|
2017-02-18 14:44:31 +00:00
|
|
|
|
2021-01-15 14:45:37 +00:00
|
|
|
with lib;
|
2017-09-04 01:50:09 +00:00
|
|
|
|
2017-02-18 14:44:31 +00:00
|
|
|
let
|
|
|
|
bits =
|
2021-11-09 15:09:14 +00:00
|
|
|
if stdenv.is64bit then "64"
|
|
|
|
else "32";
|
2017-02-18 14:44:31 +00:00
|
|
|
|
2022-05-10 21:52:26 +00:00
|
|
|
libpath = makeLibraryPath [ stdenv.cc.cc stdenv.cc.libc alsa-lib ];
|
2017-02-18 14:44:31 +00:00
|
|
|
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
2021-11-09 15:09:14 +00:00
|
|
|
pname = "mwprocapture";
|
|
|
|
subVersion = "4236";
|
|
|
|
version = "1.3.0.${subVersion}-${kernel.version}";
|
2017-02-18 14:44:31 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-11-09 15:09:14 +00:00
|
|
|
url = "https://www.magewell.com/files/drivers/ProCaptureForLinux_${subVersion}.tar.gz";
|
2021-06-05 23:56:23 +00:00
|
|
|
sha256 = "1mfgj84km276sq5i8dny1vqp2ycqpvgplrmpbqwnk230d0w3qs74";
|
2017-02-18 14:44:31 +00:00
|
|
|
};
|
|
|
|
|
2021-06-05 23:56:23 +00:00
|
|
|
nativeBuildInputs = kernel.moduleBuildDependencies;
|
2018-01-02 00:01:44 +00:00
|
|
|
|
2021-11-09 15:09:14 +00:00
|
|
|
preConfigure = ''
|
2017-02-18 14:44:31 +00:00
|
|
|
cd ./src
|
|
|
|
export INSTALL_MOD_PATH="$out"
|
|
|
|
'';
|
|
|
|
|
|
|
|
hardeningDisable = [ "pic" "format" ];
|
|
|
|
|
|
|
|
makeFlags = [
|
|
|
|
"KERNELDIR=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"
|
|
|
|
];
|
|
|
|
|
2022-06-02 22:26:50 +00:00
|
|
|
patches = [ ./pci.patch ];
|
|
|
|
|
2023-02-20 15:17:34 +00:00
|
|
|
env.NIX_CFLAGS_COMPILE = "-Wno-error=implicit-fallthrough";
|
2022-06-02 22:26:50 +00:00
|
|
|
|
2017-02-18 14:44:31 +00:00
|
|
|
postInstall = ''
|
|
|
|
cd ../
|
|
|
|
mkdir -p $out/bin
|
|
|
|
cp bin/mwcap-control_${bits} $out/bin/mwcap-control
|
|
|
|
cp bin/mwcap-info_${bits} $out/bin/mwcap-info
|
|
|
|
mkdir -p $out/lib/udev/rules.d
|
|
|
|
# source has a filename typo
|
|
|
|
cp scripts/10-procatpure-event-dev.rules $out/lib/udev/rules.d/10-procapture-event-dev.rules
|
|
|
|
cp -r src/res $out
|
|
|
|
|
|
|
|
patchelf \
|
|
|
|
--set-interpreter $(cat ${stdenv.cc}/nix-support/dynamic-linker) \
|
|
|
|
--set-rpath "${libpath}" \
|
|
|
|
"$out"/bin/mwcap-control
|
|
|
|
|
|
|
|
patchelf \
|
|
|
|
--set-interpreter $(cat ${stdenv.cc}/nix-support/dynamic-linker) \
|
|
|
|
--set-rpath "${libpath}" \
|
|
|
|
"$out"/bin/mwcap-info
|
|
|
|
'';
|
|
|
|
|
2017-09-04 01:50:09 +00:00
|
|
|
meta = {
|
2022-07-23 15:32:09 +00:00
|
|
|
broken = kernel.kernelAtLeast "5.16";
|
2023-01-21 21:41:12 +00:00
|
|
|
homepage = "https://www.magewell.com/";
|
2017-02-18 14:44:31 +00:00
|
|
|
description = "Linux driver for the Magewell Pro Capture family";
|
|
|
|
license = licenses.unfreeRedistributable;
|
|
|
|
maintainers = with maintainers; [ MP2E ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|