bilibili: update meta info

1. mark sourceProvenance as `binaryNativeCode`
2. only work on "x86_64-linux" platform, upstream supports arm but it still is not in nixpkgs
3. Add unfree license, this is a proprietary software belonging to `bilibili.com`, [upstream](https://github.com/msojocs/bilibili-linux) ported to linux via anti-obfuscation
This commit is contained in:
rewine 2023-11-29 13:55:18 +08:00 committed by Weijia Wang
parent 6620eab212
commit 27e8db2bcf

View File

@ -41,9 +41,10 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Electron-based bilibili desktop client";
homepage = "https://github.com/msojocs/bilibili-linux";
license = licenses.mit;
license = with licenses; [ unfree mit ];
maintainers = with maintainers; [ jedsek kashw2 ];
platforms = platforms.unix;
platforms = [ "x86_64-linux" ];
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
mainProgram = "bilibili";
};
}