nixpkgs/pkgs/by-name/ep/epiphany/package.nix
Silvan Mosberger 4f0dadbf38 treewide: format all inactive Nix files
After final improvements to the official formatter implementation,
this commit now performs the first treewide reformat of Nix files using it.
This is part of the implementation of RFC 166.

Only "inactive" files are reformatted, meaning only files that
aren't being touched by any PR with activity in the past 2 months.
This is to avoid conflicts for PRs that might soon be merged.
Later we can do a full treewide reformat to get the rest,
which should not cause as many conflicts.

A CI check has already been running for some time to ensure that new and
already-formatted files are formatted, so the files being reformatted here
should also stay formatted.

This commit was automatically created and can be verified using

    nix-build a08b3a4d19.tar.gz \
      --argstr baseRev b32a094368
    result/bin/apply-formatting $NIXPKGS_PATH
2024-12-10 20:26:33 +01:00

115 lines
2.0 KiB
Nix

{
lib,
stdenv,
meson,
ninja,
gettext,
fetchurl,
pkg-config,
gtk4,
glib,
icu,
wrapGAppsHook4,
gnome,
libportal-gtk4,
libxml2,
itstool,
webkitgtk_6_0,
libsoup_3,
glib-networking,
libsecret,
gnome-desktop,
libarchive,
p11-kit,
sqlite,
gcr_4,
isocodes,
desktop-file-utils,
nettle,
gdk-pixbuf,
gst_all_1,
json-glib,
libadwaita,
buildPackages,
withPantheon ? false,
pantheon,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "epiphany";
version = "47.2";
src = fetchurl {
url = "mirror://gnome/sources/epiphany/${lib.versions.major finalAttrs.version}/epiphany-${finalAttrs.version}.tar.xz";
hash = "sha256-NNr9g2OgmLRNR24umCO0y+puZq+tM7uhDtehP/GpZPE=";
};
nativeBuildInputs = [
desktop-file-utils
gettext
itstool
meson
ninja
pkg-config
wrapGAppsHook4
buildPackages.glib
buildPackages.gtk4
];
buildInputs =
[
gcr_4
gdk-pixbuf
glib
glib-networking
gnome-desktop
gst_all_1.gst-libav
gst_all_1.gst-plugins-bad
gst_all_1.gst-plugins-base
gst_all_1.gst-plugins-good
gst_all_1.gst-plugins-ugly
gst_all_1.gstreamer
gtk4
icu
isocodes
json-glib
libadwaita
libportal-gtk4
libarchive
libsecret
libsoup_3
libxml2
nettle
p11-kit
sqlite
webkitgtk_6_0
]
++ lib.optionals withPantheon [
pantheon.granite7
];
# Tests need an X display
mesonFlags =
[
"-Dunit_tests=disabled"
]
++ lib.optionals withPantheon [
"-Dgranite=enabled"
];
passthru = {
updateScript = gnome.updateScript {
packageName = "epiphany";
};
};
meta = with lib; {
homepage = "https://apps.gnome.org/Epiphany/";
description = "WebKit based web browser for GNOME";
mainProgram = "epiphany";
maintainers = teams.gnome.members ++ teams.pantheon.members;
license = licenses.gpl3Plus;
platforms = platforms.linux;
};
})