Commit 3ce4ab2b authored by John Garcia's avatar John Garcia
Browse files

apx-gui: format with nixfmt

parent 2fde3fa4
Loading
Loading
Loading
Loading
+33 −23
Original line number Diff line number Diff line
{ lib
, stdenv
, fetchFromGitHub
, appstream-glib
, desktop-file-utils
, gobject-introspection
, libadwaita
, meson
, ninja
, pkg-config
, python3
, wrapGAppsHook4
, apx
, gnome-console
, vte-gtk4
{
  lib,
  stdenv,
  fetchFromGitHub,
  appstream-glib,
  desktop-file-utils,
  gobject-introspection,
  libadwaita,
  meson,
  ninja,
  pkg-config,
  python3,
  wrapGAppsHook4,
  apx,
  gnome-console,
  vte-gtk4,
}:

stdenv.mkDerivation (finalAttrs: {
@@ -35,7 +36,11 @@ stdenv.mkDerivation (finalAttrs: {
    meson
    ninja
    pkg-config
    (python3.withPackages (ps: [ ps.pygobject3 ps.pyyaml ps.requests ]))
    (python3.withPackages (ps: [
      ps.pygobject3
      ps.pyyaml
      ps.requests
    ]))
    wrapGAppsHook4
  ];

@@ -46,7 +51,12 @@ stdenv.mkDerivation (finalAttrs: {

  preFixup = ''
    gappsWrapperArgs+=(
      --prefix PATH : "${lib.makeBinPath [ apx gnome-console ]}"
      --prefix PATH : "${
        lib.makeBinPath [
          apx
          gnome-console
        ]
      }"
    )
  '';