various: remove meta = with lib; in the rest of tree (#487414)

This commit is contained in:
Yohann Boniface
2026-02-05 23:02:53 +00:00
committed by GitHub
9 changed files with 30 additions and 30 deletions
@@ -77,15 +77,15 @@ stdenv.mkDerivation {
passthru.driverPath = "/lib/libfprint-2/tod-1";
meta = with lib; {
meta = {
description = "Broadcom driver module for libfprint-2-tod Touch OEM Driver for Dell ControlVault v3+";
homepage = "https://git.launchpad.net/~oem-solutions-engineers/pc-enablement/+git/libfprint-2-tod1-broadcom-cv3plus/";
license = licenses.unfree;
maintainers = with maintainers; [
license = lib.licenses.unfree;
maintainers = with lib.maintainers; [
aionescu
pitkling
];
platforms = [ "x86_64-linux" ];
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
};
}
+3 -3
View File
@@ -29,10 +29,10 @@ stdenvNoCC.mkDerivation {
passthru.scriptName = "cut.lua";
meta = with lib; {
meta = {
description = "An mpv plugin for cutting videos incredibly quickly";
homepage = "https://github.com/familyfriendlymikey/mpv-cut";
license = licenses.unfree; # the repository doesn't have a license
maintainers = with maintainers; [ ncfavier ];
license = lib.licenses.unfree; # the repository doesn't have a license
maintainers = with lib.maintainers; [ ncfavier ];
};
}
+3 -3
View File
@@ -79,11 +79,11 @@ rustPlatform.buildRustPackage (finalAttrs: {
cp ${opencode}/bin/opencode packages/desktop/src-tauri/sidecars/opencode-cli-${stdenv.hostPlatform.rust.rustcTarget}
'';
meta = with lib; {
meta = {
description = "AI coding agent desktop client";
homepage = "https://opencode.ai";
license = licenses.mit;
maintainers = with maintainers; [
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
xiaoxiangmoe
];
mainProgram = "OpenCode";
+3 -3
View File
@@ -61,7 +61,7 @@ stdenv.mkDerivation (finalAttrs: {
passthru.tests.factorial = callPackage ./factorial-test.nix { opentxl = finalAttrs.finalPackage; };
passthru.updateScript = nix-update-script { };
meta = with lib; {
meta = {
description = "Open-source compiler for the Txl language";
mainProgram = "txl";
platforms = [
@@ -71,7 +71,7 @@ stdenv.mkDerivation (finalAttrs: {
homepage = "https://github.com/CordyJ/OpenTxl";
downloadPage = "https://github.com/CordyJ/OpenTxl/releases";
changelog = "https://github.com/CordyJ/OpenTxl/releases/tag/v${finalAttrs.version}";
license = licenses.mit;
maintainers = with maintainers; [ MysteryBlokHed ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ MysteryBlokHed ];
};
})
+4 -4
View File
@@ -41,12 +41,12 @@ stdenv.mkDerivation {
runHook postInstall
'';
meta = with lib; {
meta = {
description = "Markdown editor with support for multi-tab";
homepage = "https://codeberg.org/ItsZariep/Phantom";
license = licenses.gpl3Only;
license = lib.licenses.gpl3Only;
mainProgram = "phantom";
platforms = platforms.all;
maintainers = with maintainers; [ reylak ];
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [ reylak ];
};
}
+4 -4
View File
@@ -36,12 +36,12 @@ stdenv.mkDerivation {
runHook postInstall
'';
meta = with lib; {
meta = {
description = "Simple QT6 Program Launcher";
homepage = "https://codeberg.org/ItsZariep/SQLauncher";
license = licenses.gpl3Only;
license = lib.licenses.gpl3Only;
mainProgram = "sqlauncher";
platforms = platforms.linux;
maintainers = [ maintainers.reylak ];
platforms = lib.platforms.linux;
maintainers = [ lib.maintainers.reylak ];
};
}
+4 -4
View File
@@ -76,7 +76,7 @@ stdenv.mkDerivation (finalAttrs: {
--set NIX_ENFORCE_PURITY 0
'';
meta = with lib; {
meta = {
description = "Extended version of the Turing programming language with concurrency and systems programming features";
mainProgram = "tpc";
platforms = [
@@ -86,8 +86,8 @@ stdenv.mkDerivation (finalAttrs: {
homepage = "https://github.com/CordyJ/Open-TuringPlus";
downloadPage = "https://github.com/CordyJ/Open-TuringPlus/releases";
changelog = "https://github.com/CordyJ/Open-TuringPlus/releases/tag/v${finalAttrs.version}";
license = licenses.mit;
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
maintainers = with maintainers; [ MysteryBlokHed ];
license = lib.licenses.mit;
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
maintainers = with lib.maintainers; [ MysteryBlokHed ];
};
})
+3 -3
View File
@@ -59,7 +59,7 @@ stdenv.mkDerivation (finalAttrs: {
runHook postInstall
'';
meta = with lib; {
meta = {
description = "Extended version of the Turing programming language with concurrency and systems programming features";
mainProgram = "tpc";
platforms = [
@@ -69,7 +69,7 @@ stdenv.mkDerivation (finalAttrs: {
homepage = "https://github.com/CordyJ/Open-TuringPlus";
downloadPage = "https://github.com/CordyJ/Open-TuringPlus/releases";
changelog = "https://github.com/CordyJ/Open-TuringPlus/releases/tag/v${finalAttrs.version}";
license = licenses.mit;
maintainers = with maintainers; [ MysteryBlokHed ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ MysteryBlokHed ];
};
})
+2 -2
View File
@@ -112,10 +112,10 @@ stdenv.mkDerivation (finalAttrs: {
];
};
meta = with lib; {
meta = {
description = "Desktop App of the Vikunja to-do list app";
homepage = "https://vikunja.io/";
license = licenses.gpl3Plus;
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ kolaente ];
mainProgram = "vikunja-desktop";
inherit (electron.meta) platforms;