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)
82 lines
2.1 KiB
Nix
82 lines
2.1 KiB
Nix
{ lib, stdenv
|
|
, fetchurl
|
|
, gtk3
|
|
, which
|
|
, pkg-config
|
|
, intltool
|
|
, file
|
|
, libintl
|
|
, hicolor-icon-theme
|
|
, python3
|
|
, wrapGAppsHook3
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "geany";
|
|
version = "2.0";
|
|
|
|
outputs = [ "out" "dev" "doc" "man" ];
|
|
|
|
src = fetchurl {
|
|
url = "https://download.geany.org/${finalAttrs.pname}-${finalAttrs.version}.tar.bz2";
|
|
hash = "sha256-VltM0vAxHB46Fn7HHEoy26ZC4P5VSuW7a4F3t6dMzJI=";
|
|
};
|
|
|
|
patches = [
|
|
# The test runs into UB in headless environments and crashes at least on headless Darwin.
|
|
# Remove if https://github.com/geany/geany/pull/3676 is merged (or the issue fixed otherwise).
|
|
./disable-test-sidebar.patch
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
intltool
|
|
libintl
|
|
which
|
|
file
|
|
hicolor-icon-theme
|
|
python3
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk3
|
|
];
|
|
|
|
preCheck = ''
|
|
patchShebangs --build tests/ctags/runner.sh
|
|
patchShebangs --build scripts
|
|
'';
|
|
|
|
doCheck = true;
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "Small and lightweight IDE";
|
|
longDescription = ''
|
|
Geany is a small and lightweight Integrated Development Environment.
|
|
It was developed to provide a small and fast IDE, which has only a few dependencies from other packages.
|
|
Another goal was to be as independent as possible from a special Desktop Environment like KDE or GNOME.
|
|
Geany only requires the GTK runtime libraries.
|
|
Some basic features of Geany:
|
|
- Syntax highlighting
|
|
- Code folding
|
|
- Symbol name auto-completion
|
|
- Construct completion/snippets
|
|
- Auto-closing of XML and HTML tags
|
|
- Call tips
|
|
- Many supported filetypes including C, Java, PHP, HTML, Python, Perl, Pascal (full list)
|
|
- Symbol lists
|
|
- Code navigation
|
|
- Build system to compile and execute your code
|
|
- Simple project management
|
|
- Plugin interface
|
|
'';
|
|
homepage = "https://www.geany.org/";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ frlan ];
|
|
platforms = platforms.all;
|
|
mainProgram = "geany";
|
|
};
|
|
})
|