-
-
Notifications
You must be signed in to change notification settings - Fork 14.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
58 additions
and
150 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
54 changes: 0 additions & 54 deletions
54
pkgs/applications/networking/browsers/next/next-gtk-webkit.nix
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
{ stdenv, lib, lispPackages, sbcl | ||
, makeWrapper, wrapGAppsHook, gst_all_1 | ||
, glib, gdk-pixbuf, cairo | ||
, mime-types, pango, gtk3 | ||
, glib-networking, gsettings-desktop-schemas | ||
, xclip, notify-osd, enchant | ||
}: | ||
|
||
stdenv.mkDerivation rec { | ||
pname = "nyxt"; | ||
inherit (lispPackages.nyxt.meta) version; | ||
|
||
src = lispPackages.nyxt; | ||
|
||
nativeBuildInputs = [ makeWrapper wrapGAppsHook ]; | ||
gstBuildInputs = with gst_all_1; [ | ||
gstreamer gst-libav | ||
gst-plugins-base | ||
gst-plugins-good | ||
gst-plugins-bad | ||
gst-plugins-ugly | ||
]; | ||
buildInputs = [ | ||
glib gdk-pixbuf cairo | ||
mime-types pango gtk3 | ||
glib-networking gsettings-desktop-schemas | ||
xclip notify-osd enchant | ||
] ++ gstBuildInputs; | ||
|
||
GST_PLUGIN_SYSTEM_PATH_1_0 = lib.concatMapStringsSep ":" (p: "${p}/lib/gstreamer-1.0") gstBuildInputs; | ||
|
||
dontWrapGApps = true; | ||
installPhase = '' | ||
mkdir -p $out/share/applications/ | ||
sed "s/VERSION/$version/" $src/lib/common-lisp/nyxt/assets/nyxt.desktop > $out/share/applications/nyxt.desktop | ||
for i in 16 32 128 256 512; do | ||
mkdir -p "$out/share/icons/hicolor/''${i}x''${i}/apps/" | ||
cp -f $src/lib/common-lisp/nyxt/assets/nyxt_''${i}x''${i}.png "$out/share/icons/hicolor/''${i}x''${i}/apps/nyxt.png" | ||
done | ||
mkdir -p $out/bin && makeWrapper $src/bin/nyxt $out/bin/nyxt \ | ||
--prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "${GST_PLUGIN_SYSTEM_PATH_1_0}" \ | ||
--argv0 nyxt "''${gappsWrapperArgs[@]}" | ||
''; | ||
|
||
checkPhase = '' | ||
$out/bin/nyxt -h | ||
''; | ||
|
||
meta = with stdenv.lib; { | ||
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 ]; | ||
platforms = [ "x86_64-linux" ]; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters