1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

gnucash: fix breaking test

Patch taken from the upstream repository, should be fixed in next
released version.

This did require moving the invocation of `patchShebangs` from
`patchPhase` to `postpatch`, but this seems consistent with at least
some other packages.
This commit is contained in:
Michael Alan Dorman 2017-11-27 20:35:34 -05:00 committed by Orivej Desh
parent 7d69f11293
commit b802f1a4cb

View file

@ -2,7 +2,7 @@
, intltool, glib, gtk2, libofx, aqbanking, gwenhywfar, libgnomecanvas, goffice
, webkit, glibcLocales, gsettings_desktop_schemas, makeWrapper, dconf, file
, gettext, swig, slibGuile, enchant, bzip2, isocodes, libdbi, libdbiDrivers
, pango, gdk_pixbuf
, pango, gdk_pixbuf, fetchpatch
}:
/*
@ -20,6 +20,14 @@ stdenv.mkDerivation rec {
sha256 = "0x84f07p30pwhriamv8ifljgw755cj87rc12jy1xddf47spyj7rp";
};
patches = [
(fetchpatch {
sha256 = "11nlf9j7jm1i37mfcmmnkplxr3nlf257fxd01095vd65i2rn1m8h";
name = "fix-brittle-test.patch";
url = "https://github.com/Gnucash/gnucash/commit/42ac55e03a1a84739f4a5b7a247c31d91c0adc4a.patch";
})
];
buildInputs = [
# general
intltool pkgconfig libxml2 libxslt glibcLocales file gettext swig enchant
@ -40,7 +48,7 @@ stdenv.mkDerivation rec {
makeWrapper
];
patchPhase = ''
postPatch = ''
patchShebangs ./src
'';