Adding homebank, personal finance software.
svn path=/nixpkgs/trunk/; revision=19698
This commit is contained in:
parent
62c315a723
commit
8e55fad6d1
27
pkgs/applications/office/homebank/default.nix
Normal file
27
pkgs/applications/office/homebank/default.nix
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
{ fetchurl, stdenv, gtk, pkgconfig, libofx, intltool }:
|
||||||
|
|
||||||
|
let
|
||||||
|
download_root = "http://homebank.free.fr/public/";
|
||||||
|
name = "homebank-4.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 = "0nv69rmcvywgks58w20qgbw8v0ir57gys4zd2gcys6knj6q323b8";
|
||||||
|
};
|
||||||
|
|
||||||
|
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;
|
||||||
|
};
|
||||||
|
}
|
@ -7116,6 +7116,11 @@ let
|
|||||||
inherit fetchurl stdenv;
|
inherit fetchurl stdenv;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
homebank = import ../applications/office/homebank {
|
||||||
|
inherit fetchurl stdenv pkgconfig libofx intltool;
|
||||||
|
inherit (gtkLibs) gtk;
|
||||||
|
};
|
||||||
|
|
||||||
hugin = import ../applications/graphics/hugin {
|
hugin = import ../applications/graphics/hugin {
|
||||||
inherit fetchurl cmake panotools libtiff libpng boost pkgconfig
|
inherit fetchurl cmake panotools libtiff libpng boost pkgconfig
|
||||||
exiv2 gettext ilmbase enblendenfuse autopanosiftc mesa freeglut
|
exiv2 gettext ilmbase enblendenfuse autopanosiftc mesa freeglut
|
||||||
|
Loading…
x
Reference in New Issue
Block a user