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-31 02:16:55 +02:00
parent 648327d510
commit a7e4dba1e9
+10 -2
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;