From 29d256b3d3b1b37b9984155004ad576a41439e3c Mon Sep 17 00:00:00 2001 From: Matteo Pacini Date: Sat, 29 Jun 2024 13:30:07 +0100 Subject: [PATCH] opensupaplex: add maintainer --- pkgs/games/opensupaplex/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/games/opensupaplex/default.nix b/pkgs/games/opensupaplex/default.nix index 107fc10cbe06..212f00397f7b 100644 --- a/pkgs/games/opensupaplex/default.nix +++ b/pkgs/games/opensupaplex/default.nix @@ -77,13 +77,13 @@ stdenv.mkDerivation rec { categories = [ "Application" "Game" ]; })]; - meta = with lib; { + meta = { description = "A decompilation of Supaplex in C and SDL"; homepage = "https://github.com/sergiou87/open-supaplex"; changelog = "https://github.com/sergiou87/open-supaplex/blob/master/changelog/v${version}.txt"; - license = licenses.gpl3Only; - maintainers = [ ]; - platforms = platforms.linux; # Many more are supported upstream, but only linux is tested. + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ matteopacini ]; + platforms = lib.platforms.linux; # Many more are supported upstream, but only linux is tested. mainProgram = "opensupaplex"; }; }