nixpkgs/pkgs/applications/office/homebank/default.nix
Lluís Batlle i Rossell e1dcf1c3df Updating homebank; the previous homebank did not build since the new xorg merge.
svn path=/nixpkgs/trunk/; revision=26353
2011-03-16 10:39:04 +00:00

28 lines
734 B
Nix

{ fetchurl, stdenv, gtk, pkgconfig, libofx, intltool }:
let
download_root = "http://homebank.free.fr/public/";
name = "homebank-4.4";
lastrelease = download_root + name + ".tar.gz";
oldrelease = download_root + "old/" + name + ".tar.gz";
in
stdenv.mkDerivation {
inherit name;
src = fetchurl {
urls = [ lastrelease oldrelease ];
sha256 = "1lp7vhimn7aa2b4ik857w7d7rbbqcwlsffk8s8lw4fjyaxrr7f0k";
};
buildInputs = [ pkgconfig gtk libofx intltool ];
meta = {
description = "Free, easy, personal accounting for everyone";
homepage = http://homebank.free.fr/;
license = "GPLv2+";
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; linux;
};
}