nv-fabricmanager: remove with statements

This commit is contained in:
Philip Taron 2024-08-16 14:08:03 -07:00
parent 9a6897925d
commit 460c91c5ae
No known key found for this signature in database

View File

@ -3,7 +3,7 @@ nvidia_x11: sha256:
{ stdenv, lib, fetchurl, patchelf }: { stdenv, lib, fetchurl, patchelf }:
let let
sys = with lib; concatStringsSep "-" (reverseList (splitString "-" stdenv.system)); sys = lib.concatStringsSep "-" (lib.reverseList (lib.splitString "-" stdenv.system));
bsys = builtins.replaceStrings ["_"] ["-"] sys; bsys = builtins.replaceStrings ["_"] ["-"] sys;
fmver = nvidia_x11.version; fmver = nvidia_x11.version;
in in
@ -35,12 +35,12 @@ stdenv.mkDerivation rec {
done done
''; '';
meta = with lib; { meta = {
homepage = "https://www.nvidia.com/object/unix.html"; homepage = "https://www.nvidia.com/object/unix.html";
description = "Fabricmanager daemon for NVLink intialization and control"; description = "Fabricmanager daemon for NVLink intialization and control";
license = licenses.unfreeRedistributable; license = lib.licenses.unfreeRedistributable;
platforms = nvidia_x11.meta.platforms; platforms = nvidia_x11.meta.platforms;
mainProgram = "nv-fabricmanager"; mainProgram = "nv-fabricmanager";
maintainers = with maintainers; [ edwtjo ]; maintainers = with lib.maintainers; [ edwtjo ];
}; };
} }