66d7126255
Since years I'm not maintaining anything of the list below other than some updates when I needed them for some reason. Other people is doing that maintenance on my behalf so I better take me out but for very few packages. Finally!
22 lines
718 B
Nix
22 lines
718 B
Nix
{ fetchurl, stdenv, gtk, pkgconfig, libofx, intltool, wrapGAppsHook
|
|
, hicolor-icon-theme, libsoup, gnome3 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "homebank-5.1.8";
|
|
src = fetchurl {
|
|
url = "http://homebank.free.fr/public/${name}.tar.gz";
|
|
sha256 = "0fzjmwz2pgi0nw49xljp1za3vp67kjh88gf688d9ig4wc2ygr0qh";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig wrapGAppsHook ];
|
|
buildInputs = [ gtk libofx intltool hicolor-icon-theme libsoup
|
|
gnome3.defaultIconTheme ];
|
|
|
|
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;
|
|
};
|
|
}
|