about summary refs log tree commit diff
path: root/pkgs/applications/networking/browsers/nyxt
diff options
context:
space:
mode:
authordariof4 <dazedtank@gmail.com>2023-05-29 16:28:43 +0200
committerdariof4 <dazedtank@gmail.com>2023-06-10 19:29:26 +0200
commit2a8e901c2f6ae0d19165536173c9e383ba5821da (patch)
tree0c334224a38a098360246dc9e9cf82d9b567e7ce /pkgs/applications/networking/browsers/nyxt
parente577ef5d6e4156bf7ef0ef533147118579d3f03a (diff)
nyxt: 2.2.4 -> 3.1.0
`WEBKIT_FORCE_SANDBOX=0` is no longer needed since web extension
support has been diabled by default.
ref: https://github.com/atlas-engineer/nyxt/pull/2897

Release notes:
https://nyxt.atlas.engineer/article/release-3.0.0.org
https://github.com/atlas-engineer/nyxt/releases/tag/3.1.0
Diffstat (limited to 'pkgs/applications/networking/browsers/nyxt')
-rw-r--r--pkgs/applications/networking/browsers/nyxt/default.nix9
1 files changed, 7 insertions, 2 deletions
diff --git a/pkgs/applications/networking/browsers/nyxt/default.nix b/pkgs/applications/networking/browsers/nyxt/default.nix
index 3e526bf203349..6ed870aa93216 100644
--- a/pkgs/applications/networking/browsers/nyxt/default.nix
+++ b/pkgs/applications/networking/browsers/nyxt/default.nix
@@ -24,11 +24,14 @@ stdenv.mkDerivation rec {
     glib gdk-pixbuf cairo
     mailcap pango gtk3
     glib-networking gsettings-desktop-schemas
-    xclip notify-osd enchant
+    notify-osd enchant
   ] ++ gstBuildInputs;
 
   GST_PLUGIN_SYSTEM_PATH_1_0 = lib.makeSearchPathOutput "lib" "lib/gstreamer-1.0" gstBuildInputs;
 
+  # The executable is already built in sbclPackages.nyxt, buildPhase tries to build using the makefile which we ignore
+  dontBuild = true;
+
   dontWrapGApps = true;
   installPhase = ''
     mkdir -p $out/share/applications/
@@ -38,7 +41,9 @@ stdenv.mkDerivation rec {
       cp -f $src/assets/nyxt_''${i}x''${i}.png "$out/share/icons/hicolor/''${i}x''${i}/apps/nyxt.png"
     done
 
+    # Need to suffix PATH with xclip to be able to copy/paste in Nyxt even if xclip/xsel/wl-clipboard are not in the user's PATH
     mkdir -p $out/bin && makeWrapper $src/bin/nyxt $out/bin/nyxt \
+      --suffix PATH : ${lib.makeBinPath [ xclip ]} \
       --prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "${GST_PLUGIN_SYSTEM_PATH_1_0}" \
       --argv0 nyxt "''${gappsWrapperArgs[@]}"
   '';
@@ -51,7 +56,7 @@ stdenv.mkDerivation rec {
     description = "Infinitely extensible web-browser (with Lisp development files using WebKitGTK platform port)";
     homepage = "https://nyxt.atlas.engineer";
     license = licenses.bsd3;
-    maintainers = with maintainers; [ lewo payas ];
+    maintainers = with maintainers; [ lewo dariof4 ];
     platforms = platforms.all;
   };
 }