solanum: unpin autotools

This commit is contained in:
Weijia Wang
2025-07-25 21:53:03 +02:00
parent d406808b38
commit 81771b2035
2 changed files with 11 additions and 5 deletions
+10 -2
View File
@@ -1,7 +1,9 @@
{
lib,
stdenv,
autoreconfHook,
autoconf,
automake,
libtool,
bison,
fetchFromGitHub,
flex,
@@ -33,6 +35,10 @@ stdenv.mkDerivation {
substituteInPlace include/defaults.h --replace 'ETCPATH "' '"/etc/solanum'
'';
preConfigure = ''
./autogen.sh
'';
configureFlags = [
"--enable-epoll"
"--enable-ipv6"
@@ -47,7 +53,9 @@ stdenv.mkDerivation {
];
nativeBuildInputs = [
autoreconfHook
autoconf
automake
libtool
bison
flex
pkg-config
+1 -3
View File
@@ -4377,9 +4377,7 @@ with pkgs;
stm32loader = with python3Packages; toPythonApplication stm32loader;
solanum = callPackage ../servers/irc/solanum {
autoreconfHook = buildPackages.autoreconfHook269;
};
solanum = callPackage ../servers/irc/solanum { };
solc-select = with python3Packages; toPythonApplication solc-select;