feat: proton-authenticatorを追加#564
Conversation
There was a problem hiding this comment.
Pull request overview
デスクトップ環境(home-managerのnative Linux GUI構成)にproton-authenticatorを追加し、unfree許可リストにも含めることでビルド/評価できるようにするPRです。
Changes:
home/native-linux/gui.nixのx86_64向けGUIアプリにproton-authenticatorを追加flake.nixのunfree許可リスト(allowedUnfreePackages)にproton-authenticatorを追加
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| home/native-linux/gui.nix | x86_64環境のGUIアプリ一覧にproton-authenticatorを追加 |
| flake.nix | allowedUnfreePackagesへproton-authenticatorを追加してunfree許可 |
768b5d9 to
1739d5e
Compare
| "claude-code-bin" # Node版とBun版両方受け入れると指定する必要があります。 | ||
| "copilot-language-server" # 一番いい補完のため仕方がない。 | ||
| "discord" # ネイティブ版の方が音声などが安定しているため仕方がない。 | ||
| "proton-authenticator" # デスクトップ版のソースはまだ公開されていません。モバイル版に続きそのうち公開されると思います。 |
There was a problem hiding this comment.
コメント後半の「そのうち公開されると思います」は推測であり、リリースから半年以上経過してもデスクトップ版のソース公開予定に関する公式アナウンスは見当たりません。事実のみに留める方が正確かと思います。
| "proton-authenticator" # デスクトップ版のソースはまだ公開されていません。モバイル版に続きそのうち公開されると思います。 | |
| "proton-authenticator" # デスクトップ版のソースコードは未公開(モバイル版はGitHubで公開済み)。 |
|
これproton-authenticatorを調べたら、 |
home/native-linux/gui.nixのx86_64環境向けGUIアプリにproton-authenticatorを追加。
1739d5e to
6fce0db
Compare
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 2 out of 2 changed files in this pull request and generated no new comments.
You can also share your feedback on Copilot code review. Take the survey.
| "claude-code-bin" # Node版とBun版両方受け入れると指定する必要があります。 | ||
| "copilot-language-server" # 一番いい補完のため仕方がない。 | ||
| "discord" # ネイティブ版の方が音声などが安定しているため仕方がない。 | ||
| "proton-authenticator" # デスクトップ版のソースは公開されていますが、nixpkgsが追いついていないので報告が必要です。 |
There was a problem hiding this comment.
コメントの事実関係について: proton-authenticatorはnixpkgsに既にパッケージとして存在しています(初期PR #429909がマージ済み、その後も#443922等でバージョン更新済み)。
unfreeになっている理由は「nixpkgsが追いついていない」からではなく、デスクトップアプリのTauriラッパー部分のソースコードが未公開のためバイナリ配布(unfree)として扱われているためです。
| "proton-authenticator" # デスクトップ版のソースは公開されていますが、nixpkgsが追いついていないので報告が必要です。 | |
| "proton-authenticator" # Tauriラッパーのソースが未公開のためnixpkgsではunfreeバイナリとして配布されています。 |
There was a problem hiding this comment.
いや、ソースコードは公開されています。
WebClients/applications/authenticator at main · ProtonMail/WebClients
にあります。
これを見つけられてないのと、ビルド設定が書かれてないからです。
私はこれを時間を見つけて報告する必要があります。
home/native-linux/gui.nixのx86_64環境向けGUIアプリにproton-authenticatorを追加。