various: add myself to a few packages to start out with

This commit is contained in:
Guy Chronister
2025-10-03 12:57:14 -05:00
committed by Sigmanificient
parent 1799ce30e0
commit e75f697ae3
5 changed files with 11 additions and 4 deletions

View File

@@ -37,7 +37,10 @@ buildRubyGem rec {
homepage = "https://bundler.io";
changelog = "https://github.com/rubygems/rubygems/blob/bundler-v${version}/bundler/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ anthonyroussel ];
maintainers = with lib.maintainers; [
anthonyroussel
guylamar2006
];
mainProgram = "bundler";
};
}

View File

@@ -81,7 +81,7 @@ buildGoModule rec {
homepage = "https://fetchit.readthedocs.io";
changelog = "https://github.com/containers/fetchit/releases/tag/${src.rev}";
license = licenses.agpl3Plus;
maintainers = [ ];
maintainers = with lib.maintainers; [ guylamar2006 ];
platforms = platforms.linux;
};
}

View File

@@ -53,7 +53,10 @@ stdenv.mkDerivation (finalAttrs: {
description = "Real-time software synthesizer based on the SoundFont 2 specifications";
homepage = "https://www.fluidsynth.org";
license = lib.licenses.lgpl21Plus;
maintainers = with lib.maintainers; [ lovek323 ];
maintainers = with lib.maintainers; [
lovek323
guylamar2006
];
platforms = lib.platforms.unix;
mainProgram = "fluidsynth";
};

View File

@@ -89,6 +89,7 @@ stdenv.mkDerivation (finalAttrs: {
maintainers = with lib.maintainers; [
peterhoeg
bertof
guylamar2006
];
platforms = lib.platforms.linux;
};

View File

@@ -33,7 +33,7 @@ stdenv.mkDerivation {
homepage = "https://github.com/amhndu/SimpleNES";
description = "NES emulator written in C++";
license = lib.licenses.gpl3;
maintainers = [ ];
maintainers = with lib.maintainers; [ guylamar2006 ];
platforms = lib.platforms.linux;
mainProgram = "SimpleNES";
};