2022-08-21 21:15:33 +02:00
|
|
|
{ autoPatchelfHook
|
|
|
|
, cairo
|
|
|
|
, config
|
|
|
|
, e2fsprogs
|
|
|
|
, fetchurl
|
|
|
|
, gmp
|
|
|
|
, gtk3
|
|
|
|
, libGL
|
|
|
|
, libX11
|
|
|
|
, lib
|
|
|
|
, stdenv
|
2023-04-24 14:33:50 +02:00
|
|
|
, libgcrypt
|
2024-04-26 22:24:03 +02:00
|
|
|
, wrapGAppsHook3
|
2022-08-21 21:15:33 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
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
|
2023-04-24 14:33:50 +02:00
|
|
|
libgcrypt
|
2022-08-21 21:15:33 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
autoPatchelfHook
|
2024-04-26 22:24:03 +02:00
|
|
|
wrapGAppsHook3
|
2022-08-21 21:15:33 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|