about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/networking/browsers/litebrowser/default.nix
blob: d1ffce7e6e5eb71fdfccc0b230d04f8c1f9359a6 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{ lib
, stdenv
, fetchFromGitHub
, cmake
, pkg-config
, gtk3
, gtkmm3
, curl
, poco
, gumbo # litehtml dependency
}:

stdenv.mkDerivation {
  pname = "litebrowser";
  version = "unstable-2022-10-31";

  src = fetchFromGitHub {
    owner = "litehtml";
    repo = "litebrowser-linux";
    rev = "4654f8fb2d5e2deba7ac6223b6639341bd3b7eba";
    hash = "sha256-SvW1AOxLBLKqa+/2u2Zn+/t33ZzQHmqlcLRl6z0rK9U=";
    fetchSubmodules = true; # litehtml submodule
  };

  nativeBuildInputs = [
    cmake
    pkg-config
  ];

  buildInputs = [
    gtk3
    gtkmm3
    curl
    poco
    gumbo
  ];

  cmakeFlags = [
    "-DEXTERNAL_GUMBO=ON"
  ];

  installPhase = ''
    runHook preInstall
    install -Dm755 litebrowser $out/bin/litebrowser
    runHook postInstall
  '';

  meta = with lib; {
    description = "A simple browser based on the litehtml engine";
    mainProgram = "litebrowser";
    homepage = "https://github.com/litehtml/litebrowser-linux";
    license = licenses.bsd3;
    platforms = platforms.unix;
    maintainers = with maintainers; [ fgaz ];
  };
}