banana-accounting: init at 10.0.12 (#179112)

This commit is contained in:
Jacek Generowicz
2022-08-21 21:15:33 +02:00
committed by GitHub
parent 9fb43dad3e
commit e834ca87ff
2 changed files with 59 additions and 0 deletions
@@ -0,0 +1,57 @@
{ autoPatchelfHook
, cairo
, config
, e2fsprogs
, fetchurl
, gmp
, gtk3
, libGL
, libX11
, lib
, stdenv
}:
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
];
nativeBuildInputs = [
autoPatchelfHook
];
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 ];
};
}
+2
View File
@@ -278,6 +278,8 @@ with pkgs;
bada-bib = callPackage ../applications/science/misc/bada-bib {};
banana-accounting = callPackage ../applications/office/banana-accounting {};
bakelite = callPackage ../tools/backup/bakelite { };
benthos = callPackage ../development/tools/benthos {};