Merge pull request #36334 from chrisburr/patch-2
libpqxx: Add dependency on doxygen and xmlto
This commit is contained in:
commit
97693915e1
|
@ -1,4 +1,4 @@
|
||||||
{ lib, stdenv, fetchFromGitHub, postgresql, python2, gnused }:
|
{ lib, stdenv, fetchFromGitHub, postgresql, doxygen, xmlto, python2, gnused }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "libpqxx-${version}";
|
name = "libpqxx-${version}";
|
||||||
|
@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ gnused python2 ];
|
nativeBuildInputs = [ gnused python2 ];
|
||||||
buildInputs = [ postgresql ];
|
buildInputs = [ postgresql doxygen xmlto ];
|
||||||
|
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
patchShebangs .
|
patchShebangs .
|
||||||
|
|
Loading…
Reference in New Issue