ir-lv2: remove mainProgram

The mainProgram was set in a treewide effort but does not actually
reflect the main program.

From
https://github.com/NixOS/nixpkgs/blob/master/pkgs/README.md#meta-attributes:

meta.mainProgram must be set to the name of the executable which
facilitates the primary function or purpose of the package.

Packages which are not primarily used for a single executable do not need to set meta.mainProgram.
This commit is contained in:
Bart Brouns
2025-12-16 14:36:57 +01:00
parent 0b25cce549
commit abbc5dfdae
-1
View File
@@ -49,6 +49,5 @@ stdenv.mkDerivation (finalAttrs: {
license = lib.licenses.gpl2;
maintainers = [ lib.maintainers.magnetophon ];
platforms = lib.platforms.linux;
mainProgram = "convert4chan";
};
})