Unverified Commit 3c5fe2b3 authored by Bobby Rong's avatar Bobby Rong Committed by GitHub
Browse files

Xfce updates 2025-03-28 (#394009)

parents 0c58dc37 b887c210
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -29,6 +29,8 @@ stdenv.mkDerivation (finalAttrs: {
    hash = "sha256-6ddPma6B4hNgtILavJFz/wtSzLViABkluZ5BTXpbcEE=";
  };

  strictDeps = true;

  nativeBuildInputs = [
    glib # glib-compile-schemas
    meson
+2 −2
Original line number Diff line number Diff line
@@ -13,9 +13,9 @@
mkXfceDerivation {
  category = "apps";
  pname = "orage";
  version = "4.20.0";
  version = "4.20.1";

  sha256 = "sha256-VaabhMRgH/q9HiFXBPQ90HbMLW21BXTvZtxd8bhYYnw=";
  sha256 = "sha256-WdvqsgHfhJ2sk4vQ75m1zmWjefJBJdDKH8E0GA4fCNg=";

  buildInputs = [
    glib
+43 −14
Original line number Diff line number Diff line
{
  stdenv,
  lib,
  mkXfceDerivation,
  gtk3,
  fetchFromGitLab,
  glib,
  gnome,
  meson,
  ninja,
  pkg-config,
  wrapGAppsHook3,
  cairo,
  exo,
  gtk3,
  libexif,
  libxfce4ui,
  libxfce4util,
  xfconf,
  gnome,
  libheif,
  libjxl,
  librsvg,
  libxfce4ui,
  libxfce4util,
  webp-pixbuf-loader,
  xfconf,
  gitUpdater,
}:

mkXfceDerivation {
  category = "apps";
stdenv.mkDerivation (finalAttrs: {
  pname = "ristretto";
  version = "0.13.3";
  odd-unstable = false;
  version = "0.13.4";

  src = fetchFromGitLab {
    domain = "gitlab.xfce.org";
    owner = "apps";
    repo = "ristretto";
    tag = "ristretto-${finalAttrs.version}";
    hash = "sha256-X0liZddeEOxlo0tyn3Irvo0+MTnMFuvKY2m4h+/EI2E=";
  };

  sha256 = "sha256-cJMHRN4Wl6Fm0yoVqe0h30ZUlE1+Hw1uEDBHfHXBbC0=";
  strictDeps = true;

  nativeBuildInputs = [
    glib # glib-compile-schemas
    meson
    ninja
    pkg-config
    wrapGAppsHook3
  ];

  buildInputs = [
    cairo
    exo
    glib
    gtk3
    libexif
@@ -46,9 +70,14 @@ mkXfceDerivation {
    }"
  '';

  meta = with lib; {
  passthru.updateScript = gitUpdater { rev-prefix = "ristretto-"; };

  meta = {
    description = "Fast and lightweight picture-viewer for the Xfce desktop environment";
    homepage = "https://gitlab.xfce.org/apps/ristretto";
    license = lib.licenses.gpl2Plus;
    mainProgram = "ristretto";
    maintainers = with maintainers; [ ] ++ teams.xfce.members;
    maintainers = lib.teams.xfce.members;
    platforms = lib.platforms.linux;
  };
}
})
+41 −16
Original line number Diff line number Diff line
{
  stdenv,
  lib,
  mkXfceDerivation,
  fetchFromGitLab,
  docbook_xml_dtd_45,
  docbook_xsl,
  glib,
  libxslt, # xsltproc
  meson,
  ninja,
  pkg-config,
  wrapGAppsHook3,
  gtk3,
  gtk-layer-shell,
  libutempter,
  libX11,
  libxfce4ui,
  pcre2,
  vte,
  xfconf,
  pcre2,
  libxslt,
  docbook_xml_dtd_45,
  docbook_xsl,
  nixosTests,
  gitUpdater,
}:

mkXfceDerivation {
  category = "apps";
stdenv.mkDerivation (finalAttrs: {
  pname = "xfce4-terminal";
  version = "1.1.4";
  odd-unstable = false;
  version = "1.1.5";

  sha256 = "sha256-WrmffY8kC9tBorvtEb8q6DmHKX5d7HnvbxtBbpy4LJs=";
  src = fetchFromGitLab {
    domain = "gitlab.xfce.org";
    owner = "apps";
    repo = "xfce4-terminal";
    tag = "xfce4-terminal-${finalAttrs.version}";
    hash = "sha256-qNXrxUjmuY6+k95/zcOu1/CUfhb1u0Ca91aFD3c4uoc=";
  };

  strictDeps = true;

  nativeBuildInputs = [
    libxslt
    docbook_xml_dtd_45
    docbook_xsl
    glib # glib-mkenums
    libxslt # xsltproc
    meson
    ninja
    pkg-config
    wrapGAppsHook3
  ];

  buildInputs = [
    glib
    gtk3
    gtk-layer-shell
    libutempter
    libX11
    libxfce4ui
    pcre2
    vte
    xfconf
    pcre2
  ];

  passthru.tests.test = nixosTests.terminal-emulators.xfce4-terminal;
  passthru = {
    tests.test = nixosTests.terminal-emulators.xfce4-terminal;
    updateScript = gitUpdater { rev-prefix = "xfce4-terminal-"; };
  };

  meta = with lib; {
  meta = {
    description = "Modern terminal emulator";
    maintainers = with maintainers; [ ] ++ teams.xfce.members;
    homepage = "https://gitlab.xfce.org/apps/xfce4-terminal";
    license = lib.licenses.gpl2Plus;
    mainProgram = "xfce4-terminal";
    maintainers = lib.teams.xfce.members;
    platforms = lib.platforms.linux;
  };
}
})