ma pkgs.xmm7360: use lib instead of stdenv.lib

This commit is contained in:
makefu 2021-12-04 20:17:00 +01:00
parent 49b7580ac0
commit b1cd6f3191
No known key found for this signature in database
GPG Key ID: 36F7711F3FC0F225

View File

@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, python3, kernel, kmod }:
{ stdenv, lib, fetchFromGitHub, python3, kernel, kmod }:
let
py = python3.withPackages (p: [ p.ConfigArgParse p.pyroute2 p.dbus-python ]);
in
@ -38,7 +38,7 @@ stdenv.mkDerivation rec {
install -D open_xdatachannel $out/bin/open_xdatachannel
'';
meta = with stdenv.lib; {
meta = with lib; {
description = "A kernel module to create V4L2 loopback devices";
homepage = "https://github.com/aramg/droidcam";
license = licenses.gpl2;