summaryrefslogtreecommitdiffstats
path: root/pkgs/applications
diff options
context:
space:
mode:
authorRobert Schütz <dev@schuetz-co.de>2021-03-08 12:46:32 +0100
committerRobert Schütz <dev@schuetz-co.de>2021-03-26 14:07:52 +0100
commit553954ba0721b0f85f2ec4df1aca77b94eb32b65 (patch)
tree788e8be1893d1777315f71be2926764495ad39a1 /pkgs/applications
parentf5e8bdd07d1afaabf6b37afc5497b1e498b8046f (diff)
banking: init at 0.3.0
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/office/banking/default.nix67
1 files changed, 67 insertions, 0 deletions
diff --git a/pkgs/applications/office/banking/default.nix b/pkgs/applications/office/banking/default.nix
new file mode 100644
index 000000000000..c71c1eafa66c
--- /dev/null
+++ b/pkgs/applications/office/banking/default.nix
@@ -0,0 +1,67 @@
+{ lib
+, fetchurl
+, fetchFromGitLab
+, python3
+, appstream-glib
+, desktop-file-utils
+, glib
+, gtk3
+, libxml2
+, meson
+, ninja
+, pkg-config
+, wrapGAppsHook
+, gobject-introspection
+, libhandy
+, librsvg
+}:
+
+python3.pkgs.buildPythonApplication rec {
+ pname = "banking";
+ version = "0.3.0";
+ format = "other";
+
+ src = fetchFromGitLab {
+ owner = "tabos";
+ repo = "banking";
+ rev = version;
+ sha256 = "1w5x9iczw5hb9bfdm1df37n8xhdrida1yfrd82k9l8hb1k4q3h9d";
+ };
+
+ postPatch = ''
+ patchShebangs meson_post_install.py
+ '';
+
+ nativeBuildInputs = [
+ appstream-glib # for appstream-util
+ desktop-file-utils # for desktop-file-validate
+ glib # for glib-compile-resources
+ gtk3 # for gtk-update-icon-cache
+ libxml2 # for xmllint
+ meson
+ ninja
+ pkg-config
+ wrapGAppsHook
+ ];
+
+ buildInputs = [
+ gobject-introspection
+ gtk3
+ libhandy
+ librsvg
+ ];
+
+ propagatedBuildInputs = with python3.pkgs; [
+ cryptography
+ fints
+ mt-940
+ pygobject3
+ ];
+
+ meta = with lib; {
+ description = "Banking application for small screens";
+ homepage = "https://tabos.gitlab.io/project/banking/";
+ license = licenses.gpl3Plus;
+ maintainers = with maintainers; [ dotlambda ];
+ };
+}