Unverified Commit e75ca8f0 authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

solanum: unpin autotools (#428315)

parents d4c21f54 81771b20
Loading
Loading
Loading
Loading
+10 −2
Original line number Diff line number Diff line
{
  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
Original line number Diff line number Diff line
@@ -4374,9 +4374,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;