grisbi: get rid of sha1 + package cleanup
This commit is contained in:
parent
87b3ad919d
commit
2dbc41f637
1 changed files with 21 additions and 6 deletions
|
@ -1,5 +1,14 @@
|
|||
{ fetchurl, stdenv, gtk, pkgconfig, libgsf, libofx, intltool, wrapGAppsHook
|
||||
, libsoup, gnome3 }:
|
||||
{ fetchurl
|
||||
, stdenv
|
||||
, gtk
|
||||
, pkgconfig
|
||||
, libgsf
|
||||
, libofx
|
||||
, intltool
|
||||
, wrapGAppsHook
|
||||
, libsoup
|
||||
, gnome3
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "grisbi";
|
||||
|
@ -7,12 +16,18 @@ stdenv.mkDerivation rec {
|
|||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/grisbi/${pname}-${version}.tar.bz2";
|
||||
sha1 = "crv3bga72v6fw07wad0nkrgdg4war66j";
|
||||
sha256 = "1piiyyxjsjbw9gcqydvknzxmmfgh8kdqal12ywrxyxih2afwnvbw";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig wrapGAppsHook ];
|
||||
buildInputs = [ gtk libgsf libofx intltool libsoup
|
||||
gnome3.adwaita-icon-theme ];
|
||||
buildInputs = [
|
||||
gtk
|
||||
libgsf
|
||||
libofx
|
||||
intltool
|
||||
libsoup
|
||||
gnome3.adwaita-icon-theme
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A personnal accounting application.";
|
||||
|
@ -24,7 +39,7 @@ stdenv.mkDerivation rec {
|
|||
management and other information that make Grisbi adapted for
|
||||
associations.
|
||||
'';
|
||||
homepage = "http://grisbi.org";
|
||||
homepage = "https://grisbi.org";
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ layus ];
|
||||
platforms = platforms.linux;
|
||||
|
|
Loading…
Reference in a new issue