Unverified Commit 2da2d44e authored by Yohann Boniface's avatar Yohann Boniface Committed by GitHub
Browse files

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

parents 44a418b1 b0e30e64
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -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
Original line number Diff line number Diff line
@@ -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
Original line number Diff line number Diff line
@@ -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
Original line number Diff line number Diff line
@@ -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
Original line number Diff line number Diff line
@@ -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 ];
  };
}
Loading