mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
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)
62 lines
1.1 KiB
Nix
62 lines
1.1 KiB
Nix
{ autoPatchelfHook
|
|
, cairo
|
|
, config
|
|
, e2fsprogs
|
|
, fetchurl
|
|
, gmp
|
|
, gtk3
|
|
, libGL
|
|
, libX11
|
|
, lib
|
|
, stdenv
|
|
, libgcrypt
|
|
, wrapGAppsHook3
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "banana-accounting";
|
|
version = "10.0.12";
|
|
|
|
srcs = fetchurl {
|
|
url = "https://web.archive.org/web/20220821013214/https://www.banana.ch/accounting/files/bananaplus/exe/bananaplus.tgz";
|
|
hash = "sha256-Xs7K/Z6qM1fKKfYMkwAGznNR0Kt/gY7qTr8ZOriIdYw=";
|
|
};
|
|
|
|
sourceRoot = ".";
|
|
|
|
dontConfigure = true;
|
|
dontBuild = true;
|
|
|
|
buildInputs = [
|
|
cairo
|
|
e2fsprogs
|
|
gmp
|
|
gtk3
|
|
stdenv.cc.cc.lib
|
|
libGL
|
|
libX11
|
|
libgcrypt
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
autoPatchelfHook
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mkdir -p $out/bin
|
|
mv ./* $out
|
|
ln -s $out/usr/bin/bananaplus $out/bin/
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Accounting Software for small companies, associations and individuals";
|
|
homepage = "https://www.banana.ch/";
|
|
license = licenses.unfree;
|
|
platforms = [ "x86_64-linux" ];
|
|
maintainers = with maintainers; [ jacg ];
|
|
};
|
|
}
|