mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +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,19 +1,24 @@
|
||||||
{ stdenv, fetchurl, autoreconfHook, boost, python2, libgsf,
|
{ stdenv, fetchurl, autoreconfHook, boost, libgsf,
|
||||||
pkgconfig, bzip2, xmlto, gettext, imagemagick, doxygen }:
|
pkgconfig, bzip2, xmlto, gettext, imagemagick, doxygen }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "libpst-0.6.71";
|
name = "libpst-0.6.71";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://www.five-ten-sg.com/libpst/packages/${name}.tar.gz";
|
url = "http://www.five-ten-sg.com/libpst/packages/${name}.tar.gz";
|
||||||
sha256 = "130nksrwgi3ih32si5alvxwzd5kmlg8yi7p03w0h7w9r3b90i4pv";
|
sha256 = "130nksrwgi3ih32si5alvxwzd5kmlg8yi7p03w0h7w9r3b90i4pv";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
||||||
buildInputs = [ boost python2 libgsf bzip2
|
buildInputs = [
|
||||||
|
boost libgsf bzip2
|
||||||
xmlto gettext imagemagick doxygen
|
xmlto gettext imagemagick doxygen
|
||||||
];
|
];
|
||||||
|
|
||||||
|
configureFlags = [
|
||||||
|
"--enable-python=no"
|
||||||
|
];
|
||||||
|
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
|
|
Loading…
Reference in a new issue