Merge pull request #86966 from prusnak/grisbi

grisbi: get rid of sha1 + package cleanup
This commit is contained in:
Ryan Mulligan 2020-05-07 18:53:55 -07:00 committed by GitHub
commit 1bfe2f1506
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;