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.
wip/yesman
Jan Tojnar 4 years ago
parent 648327d510
commit a7e4dba1e9
No known key found for this signature in database
GPG Key ID: 7FAB2A15F7A607A4
  1. 12
      pkgs/development/libraries/flatpak/default.nix

@ -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…
Cancel
Save