From 7d721084a767f0b0b4ae8ce670944bba201cea5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Bon=C3=A9?= Date: Tue, 28 Oct 2025 17:26:30 +0100 Subject: [PATCH] Add meta to cudainfo Reviewed-by: Rodrigo Arias Mallo --- pkgs/cudainfo/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/cudainfo/default.nix b/pkgs/cudainfo/default.nix index 871d6978..9dddf35c 100644 --- a/pkgs/cudainfo/default.nix +++ b/pkgs/cudainfo/default.nix @@ -1,5 +1,6 @@ { stdenv +, lib , cudatoolkit , cudaPackages , autoAddDriverRunpath @@ -40,4 +41,9 @@ stdenv.mkDerivation (finalAttrs: { ''; installPhase = "touch $out"; }; + + meta = { + platforms = [ "x86_64-linux" ]; + maintainers = with lib.maintainers.bsc; [ rarias ]; + }; })