mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #59912 from JohnAZoidberg/libpst-boost-python
libpst: Fix build
This commit is contained in:
commit
a9f5ea3f76
1 changed files with 10 additions and 5 deletions
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchurl, autoreconfHook, boost, python2, libgsf,
|
||||
{ stdenv, fetchurl, autoreconfHook, boost, libgsf,
|
||||
pkgconfig, bzip2, xmlto, gettext, imagemagick, doxygen }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
@ -10,10 +10,15 @@ stdenv.mkDerivation rec {
|
|||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
||||
buildInputs = [ boost python2 libgsf bzip2
|
||||
buildInputs = [
|
||||
boost libgsf bzip2
|
||||
xmlto gettext imagemagick doxygen
|
||||
];
|
||||
|
||||
configureFlags = [
|
||||
"--enable-python=no"
|
||||
];
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
|
|
Loading…
Reference in a new issue