mwprocapture: remove 'with lib;'

This commit is contained in:
Felix Buehler
2024-08-16 16:09:03 +02:00
committed by Valentin Gagarin
parent 1de6841a25
commit 8cbfd35f75
@@ -1,13 +1,11 @@
{ lib, stdenv, fetchurl, kernel, alsa-lib }:
with lib;
let
bits =
if stdenv.is64bit then "64"
else "32";
libpath = makeLibraryPath [ stdenv.cc.cc stdenv.cc.libc alsa-lib ];
libpath = lib.makeLibraryPath [ stdenv.cc.cc stdenv.cc.libc alsa-lib ];
in
stdenv.mkDerivation rec {
@@ -56,7 +54,7 @@ stdenv.mkDerivation rec {
"$out"/bin/mwcap-info
'';
meta = {
meta = with lib; {
homepage = "https://www.magewell.com/";
description = "Linux driver for the Magewell Pro Capture family";
license = licenses.unfreeRedistributable;