ddccontrol-db: fix build (#425611)

authored by Weijia Wang and committed by GitHub 832e128c f3827448

+10 -2
+10 -2
pkgs/by-name/dd/ddccontrol-db/package.nix
··· 1 1 { 2 2 lib, 3 3 stdenv, 4 - autoreconfHook, 4 + autoconf, 5 + automake, 6 + libtool, 5 7 intltool, 6 8 fetchFromGitHub, 7 9 }: ··· 18 20 }; 19 21 20 22 nativeBuildInputs = [ 21 - autoreconfHook 23 + autoconf 24 + automake 22 25 intltool 26 + libtool 23 27 ]; 28 + 29 + preConfigure = '' 30 + ./autogen.sh 31 + ''; 24 32 25 33 meta = with lib; { 26 34 description = "Monitor database for DDCcontrol";