aboutsummaryrefslogtreecommitdiff
path: root/pkgs/applications/networking/browsers/next/default.nix
blob: 2b2e173342c5be0b5bb53c06f8b455258ba5179b (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
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{ pkgs, stdenv, fetchFromGitHub
, gcc7, pkg-config, makeWrapper
, glib-networking
, next-gtk-webkit
, lispPackages
, sbcl
}:

stdenv.mkDerivation rec {
    pname = "next";
    version = "1.3.1";

    src = fetchFromGitHub {
      owner = "atlas-engineer";
      repo = "next";
      rev = version;
      sha256 = "01fn1f080ydk0wj1bwkyakqz93bdq9xb5x8qz820jpl9id17bqgj";
    };

    # Stripping destroys the generated SBCL image
    dontStrip = true;

    prePatch = ''
      substituteInPlace source/ports/gtk-webkit.lisp \
        --replace "next-gtk-webkit" "${next-gtk-webkit}/bin/next-gtk-webkit"
    '';

    nativeBuildInputs = [ sbcl makeWrapper ];
    buildInputs = with lispPackages; [
      trivial-features
      trivial-garbage
      alexandria
      bordeaux-threads
      cl-json
      cl-markup
      cl-ppcre
      cl-ppcre-unicode
      closer-mop
      dexador
      ironclad
      lparallel
      parenscript
      quri
      cl-css
      log4cl
      mk-string-metrics
      sqlite
      str
      swank
      trivia
      trivial-clipboard
      unix-opts
      dbus
    ];
    propagatedBuildInputs = [ next-gtk-webkit ];

    buildPhase = ''
      common-lisp.sh --eval "(require :asdf)" \
                     --eval "(asdf:load-asd (truename \"next.asd\") :name \"next\")" \
                     --eval '(asdf:make :next)' \
                     --quit
    '';

    installPhase = ''
      install -D -m0755 next $out/bin/next
    '';

    preFixup = ''
      wrapProgram $out/bin/next \
        --prefix GIO_EXTRA_MODULES : "${glib-networking.out}/lib/gio/modules"
    '';

    meta = with stdenv.lib; {
      description = "Infinitely extensible web-browser (with Lisp development files)";
      homepage = https://next.atlas.engineer;
      license = licenses.bsd3;
      maintainers = [ maintainers.lewo ];
      platforms = [ "x86_64-linux" ];
    };
  }