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

This commit is contained in:
makefu 2021-12-04 20:17:00 +01:00
parent 6ecd31055f
commit 288de758cb

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;