forked from mirrors/nixpkgs
464e7cd885
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/homebank/versions
23 lines
720 B
Nix
23 lines
720 B
Nix
{ fetchurl, stdenv, gtk, pkgconfig, libofx, intltool, wrapGAppsHook
|
|
, hicolor-icon-theme, libsoup, gnome3 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "homebank-5.2.5";
|
|
src = fetchurl {
|
|
url = "http://homebank.free.fr/public/${name}.tar.gz";
|
|
sha256 = "1716igj18792sp4rx0vwxvx95mahgb7wiyahd2018yq8z88vc36w";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig wrapGAppsHook ];
|
|
buildInputs = [ gtk libofx intltool hicolor-icon-theme libsoup
|
|
gnome3.adwaita-icon-theme ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Free, easy, personal accounting for everyone";
|
|
homepage = http://homebank.free.fr/;
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ pSub ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|