Commit d7f57d22 authored by Robert Schütz's avatar Robert Schütz
Browse files
parent 2740b264
Loading
Loading
Loading
Loading
+5 −4
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
  lib,
  fetchFromGitLab,
  python3,
  appstream-glib,
  appstream,
  blueprint-compiler,
  desktop-file-utils,
  glib,
@@ -20,14 +20,14 @@

python3.pkgs.buildPythonApplication rec {
  pname = "saldo";
  version = "0.8.3";
  version = "0.8.4";
  pyproject = false;

  src = fetchFromGitLab {
    owner = "tabos";
    repo = "saldo";
    tag = version;
    hash = "sha256-ItdEse9ab5spvxcWn1FTAl7ppfjohRr0CXI4ImiSe+g=";
    hash = "sha256-QOhHDbXq+QHq6XV/ejt5+Si1bXRZZxLjsRlWVw7Zsuk=";
  };

  postPatch = ''
@@ -35,7 +35,7 @@ python3.pkgs.buildPythonApplication rec {
  '';

  nativeBuildInputs = [
    appstream-glib # for appstream-util
    appstream # for appstreamcli
    blueprint-compiler
    desktop-file-utils # for desktop-file-validate
    glib # for glib-compile-resources
@@ -65,6 +65,7 @@ python3.pkgs.buildPythonApplication rec {
  passthru.updateScript = gitUpdater { };

  meta = {
    changelog = "https://gitlab.com/tabos/saldo/-/blob/${src.tag}/NEWS";
    description = "Banking application for small screens";
    homepage = "https://www.tabos.org/projects/saldo/";
    license = lib.licenses.gpl3Plus;