homebank: 5.1.1 -> 5.1.2

simplify and add myself as maintainer
This commit is contained in:
Pascal Wittmann 2016-12-11 20:07:42 +01:00
parent d9f494abbc
commit e5c525b5a2
No known key found for this signature in database
GPG Key ID: C899ACE7E2322852

View File

@ -1,29 +1,21 @@
{ fetchurl, stdenv, gtk, pkgconfig, libofx, intltool, wrapGAppsHook { fetchurl, stdenv, gtk, pkgconfig, libofx, intltool, wrapGAppsHook
, hicolor_icon_theme, libsoup }: , hicolor_icon_theme, libsoup }:
let stdenv.mkDerivation rec {
download_root = "http://homebank.free.fr/public/"; name = "homebank-5.1.2";
name = "homebank-5.1.1";
lastrelease = download_root + name + ".tar.gz";
oldrelease = download_root + "old/" + name + ".tar.gz";
in
stdenv.mkDerivation {
inherit name;
src = fetchurl { src = fetchurl {
urls = [ lastrelease oldrelease ]; url = "http://homebank.free.fr/public/${name}.tar.gz";
sha256 = "1gd4b8fsq89w486mfrclw4r1nrgh7lxp4sncbgprbz9id7f6vlww"; sha256 = "09zsq5l3s8cg4slhsyybsq8v1arnhh07i0rzka3j6ahysky15pfh";
}; };
buildInputs = [ pkgconfig gtk libofx intltool hicolor_icon_theme nativeBuildInputs = [ pkgconfig wrapGAppsHook ];
wrapGAppsHook libsoup ]; buildInputs = [ gtk libofx intltool hicolor_icon_theme libsoup ];
meta = { meta = with stdenv.lib; {
description = "Free, easy, personal accounting for everyone"; description = "Free, easy, personal accounting for everyone";
homepage = http://homebank.free.fr/; homepage = http://homebank.free.fr/;
license = stdenv.lib.licenses.gpl2Plus; license = licenses.gpl2Plus;
maintainers = with stdenv.lib.maintainers; [viric]; maintainers = with maintainers; [ viric pSub ];
platforms = with stdenv.lib.platforms; linux; platforms = platforms.linux;
}; };
} }