flatpak: do not use autoreconfHook

They use custom autogen.sh and running autoreconf is not enough.

This is necessary when running from Git, which I do on almost every update.
This commit is contained in:
Jan Tojnar 2020-03-30 23:10:14 +02:00
parent 648327d510
commit a7e4dba1e9
No known key found for this signature in database
GPG Key ID: 7FAB2A15F7A607A4

View File

@ -1,6 +1,8 @@
{ stdenv { stdenv
, fetchurl , fetchurl
, autoreconfHook , autoconf
, automake
, libtool
, docbook_xml_dtd_412 , docbook_xml_dtd_412
, docbook_xml_dtd_42 , docbook_xml_dtd_42
, docbook_xml_dtd_43 , docbook_xml_dtd_43
@ -104,7 +106,9 @@ stdenv.mkDerivation rec {
]; ];
nativeBuildInputs = [ nativeBuildInputs = [
autoreconfHook autoconf
automake
libtool
libxml2 libxml2
docbook_xml_dtd_412 docbook_xml_dtd_412
docbook_xml_dtd_42 docbook_xml_dtd_42
@ -179,6 +183,10 @@ stdenv.mkDerivation rec {
patchShebangs tests patchShebangs tests
''; '';
preConfigure = ''
NOCONFIGURE=1 ./autogen.sh
'';
passthru = { passthru = {
tests = { tests = {
installedTests = nixosTests.installed-tests.flatpak; installedTests = nixosTests.installed-tests.flatpak;