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