Unverified Commit 1500c7ce authored by Gutyina Gergő's avatar Gutyina Gergő
Browse files

termscp: remove `with lib;`, order `meta` attrs

parent 0b3e980d
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
@@ -56,12 +56,14 @@ rustPlatform.buildRustPackage rec {
  # Requires network access
  doCheck = false;

  meta = with lib; {
  meta = {
    changelog = "https://github.com/veeso/termscp/blob/v${version}/CHANGELOG.md";
    description = "Feature rich terminal UI file transfer and explorer with support for SCP/SFTP/FTP/S3/SMB";
    homepage = "https://github.com/veeso/termscp";
    changelog = "https://github.com/veeso/termscp/blob/v${version}/CHANGELOG.md";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ fab ];
    license = lib.licenses.mit;
    mainProgram = "termscp";
    maintainers = with lib.maintainers; [
      fab
    ];
  };
}