nixpkgs/pkgs/applications/office/homebank/default.nix
Lluís Batlle i Rossell ff9455f41a Updating homebank
svn path=/nixpkgs/trunk/; revision=22625
2010-07-18 09:19:16 +00:00

28 lines
734 B
Nix

{ fetchurl, stdenv, gtk, pkgconfig, libofx, intltool }:
let
download_root = "http://homebank.free.fr/public/";
name = "homebank-4.3";
lastrelease = download_root + name + ".tar.gz";
oldrelease = download_root + "old/" + name + ".tar.gz";
in
stdenv.mkDerivation {
inherit name;
src = fetchurl {
urls = [ lastrelease oldrelease ];
sha256 = "1r4bvyc2wnizjjc27hap6b4b01zjfp1x0rygylvi5n29jy6r2fn6";
};
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;
};
}