eb04659fc2
This was achieved using the following command: sd 'wrapGAppsHook\b' wrapGAppsHook3 (rg -l 'wrapGAppsHook\b') And then manually reverted the following changes: - alias in top-level.nix - function name in wrap-gapps-hook.sh - comment in postFixup of at-spi2-core - comment in gtk4 - comment in preFixup of 1password-gui/linux.nix - comment in postFixup of qgis/unwrapped-ltr.nix and qgis/unwrapped.nix - comment in postFixup of telegram-desktop - comment in postFixup of fwupd - buildCommand of mongodb-compass - postFixup of xflux-gui - comment in a patch in kdePackages.kde-gtk-config and plasma5Packages.kde-gtk-config - description of programs.sway.wrapperFeatures.gtk NixOS option (manual rebuild)
31 lines
1 KiB
Nix
31 lines
1 KiB
Nix
{ avahiSupport ? false # build support for Avahi in libinfinity
|
|
, lib, stdenv, fetchFromGitHub, autoconf, automake, pkg-config, wrapGAppsHook3, yelp-tools
|
|
, gtkmm3, gsasl, gtksourceview3, libxmlxx, libinfinity, intltool, itstool }:
|
|
|
|
let
|
|
libinf = libinfinity.override { gtkWidgets = true; inherit avahiSupport; };
|
|
in stdenv.mkDerivation rec {
|
|
pname = "gobby";
|
|
version = "0.6.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "gobby";
|
|
repo = "gobby";
|
|
rev = "v${version}";
|
|
sha256 = "06cbc2y4xkw89jaa0ayhgh7fxr5p2nv3jjs8h2xcbbbgwaw08lk0";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoconf automake pkg-config intltool itstool yelp-tools wrapGAppsHook3 ];
|
|
buildInputs = [ gtkmm3 gsasl gtksourceview3 libxmlxx libinf ];
|
|
|
|
preConfigure = "./autogen.sh";
|
|
|
|
meta = with lib; {
|
|
homepage = "http://gobby.0x539.de/";
|
|
description = "A GTK-based collaborative editor supporting multiple documents in one session and a multi-user chat";
|
|
mainProgram = "gobby-0.5";
|
|
license = lib.licenses.gpl2Plus;
|
|
maintainers = [ ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|