aboutsummaryrefslogtreecommitdiff
path: root/pkgs/applications/networking/browsers/next-gtk-webkit/default.nix
blob: 6ab5337631099d7609df6706c048e6a37a7206b4 (plain)
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
{ stdenv, gcc7, pkg-config
, next
, webkitgtk, gsettings-desktop-schemas
}:

stdenv.mkDerivation rec {
  pname = "next-gtk-webkit";
  inherit (next) src version;

  makeFlags = [ "gtk-webkit" "PREFIX=$(out)" ];
  installTargets = "install-gtk-webkit";

  nativeBuildInputs = [ gcc7 pkg-config ];
  buildInputs = [
    webkitgtk
    gsettings-desktop-schemas
  ];
  meta = with stdenv.lib; {
    description = "Infinitely extensible web-browser (user interface only)";
    homepage = https://next.atlas.engineer;
    license = licenses.bsd3;
    maintainers = [ maintainers.lewo ];
    platforms = [ "x86_64-linux" ];
  };
}