aboutsummaryrefslogtreecommitdiff
path: root/pkgs/thorium.nix
blob: 01bffb0fff7c24bdbba56d4c24aeadf29d710569 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
  pkgs,
  lib,
  yae,
}:
pkgs.appimageTools.wrapType2 {
  inherit (yae.thorium) version;

  pname = "thorium";

  src = pkgs.fetchurl {
    inherit (yae.thorium) url sha256;
  };

  meta = with lib; {
    description = "Chromium fork named after radioactive element No. 90.";
    sourceProvenance = with sourceTypes; [ binaryNativeCode ];
    homepage = "https://thorium.rocks/";
    license = licenses.bsd3;
    platforms = platforms.linux;
    mainProgram = "thorium-browser";
    maintainers = [ maintainers.Fuwn ];
  };
}