summary refs log tree commit diff
path: root/pkgs/applications/office/skrooge/default.nix
blob: dfb4c243c8cf352e2c51883028a45df7aaeeb645 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, fetchurl, kdelibs, grantlee, qca2, libofx, gettext }:

stdenv.mkDerivation rec {
  name = "skrooge-1.3.2";

  src = fetchurl {
    url = "http://skrooge.org/files/${name}.tar.bz2";
    sha256 = "18j36yamxzfwpnnnjiach22q9088c2nlcilzh2p24gjhgnnd0v6r";
  };

  buildInputs = [ kdelibs grantlee qca2 libofx ];

  nativeBuildInputs = [ gettext ];

  meta = {
    inherit (kdelibs.meta) platforms;
    description = "A personal finance manager for KDE";
    maintainers = [ stdenv.lib.maintainers.urkud ];
  };
}