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:
parent
648327d510
commit
a7e4dba1e9
@ -1,6 +1,8 @@
|
||||
{ stdenv
|
||||
, fetchurl
|
||||
, autoreconfHook
|
||||
, autoconf
|
||||
, automake
|
||||
, libtool
|
||||
, docbook_xml_dtd_412
|
||||
, docbook_xml_dtd_42
|
||||
, docbook_xml_dtd_43
|
||||
@ -104,7 +106,9 @@ stdenv.mkDerivation rec {
|
||||
];
|
||||
|
||||
nativeBuildInputs = [
|
||||
autoreconfHook
|
||||
autoconf
|
||||
automake
|
||||
libtool
|
||||
libxml2
|
||||
docbook_xml_dtd_412
|
||||
docbook_xml_dtd_42
|
||||
@ -179,6 +183,10 @@ stdenv.mkDerivation rec {
|
||||
patchShebangs tests
|
||||
'';
|
||||
|
||||
preConfigure = ''
|
||||
NOCONFIGURE=1 ./autogen.sh
|
||||
'';
|
||||
|
||||
passthru = {
|
||||
tests = {
|
||||
installedTests = nixosTests.installed-tests.flatpak;
|
||||
|
Loading…
x
Reference in New Issue
Block a user