Files
nixpkgs/pkgs/by-name/go/gobby/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

65 lines
1.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 = "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;
};
}