30 lines
842 B
Nix
30 lines
842 B
Nix
{ fetchurl, stdenv, gtk, pkgconfig, libofx, intltool, wrapGAppsHook
|
|
, hicolor_icon_theme, libsoup}:
|
|
|
|
let
|
|
download_root = "http://homebank.free.fr/public/";
|
|
name = "homebank-5.1";
|
|
lastrelease = download_root + name + ".tar.gz";
|
|
oldrelease = download_root + "old/" + name + ".tar.gz";
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
inherit name;
|
|
|
|
src = fetchurl {
|
|
urls = [ lastrelease oldrelease ];
|
|
sha256 = "1v6za6md5sjb1r3f5lc9k03v2q68cbx6g64vcn69666c42za2aq0";
|
|
};
|
|
|
|
buildInputs = [ pkgconfig gtk libofx intltool hicolor_icon_theme
|
|
wrapGAppsHook libsoup ];
|
|
|
|
meta = {
|
|
description = "Free, easy, personal accounting for everyone";
|
|
homepage = http://homebank.free.fr/;
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
};
|
|
}
|