python3Packages.recoll: init
Also move some stuff to recoll's nativeBuildInputs.
This commit is contained in:
parent
435128bee8
commit
af9ea7040c
@ -48,10 +48,12 @@ mkDerivation rec {
|
|||||||
++ lib.optionals (!withGui) [ "--disable-qtgui" "--disable-x11mon" ]
|
++ lib.optionals (!withGui) [ "--disable-qtgui" "--disable-x11mon" ]
|
||||||
++ (if stdenv.isLinux then [ "--with-inotify" ] else [ "--without-inotify" ]);
|
++ (if stdenv.isLinux then [ "--with-inotify" ] else [ "--without-inotify" ]);
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config ];
|
nativeBuildInputs = [
|
||||||
|
file pkg-config python3Packages.setuptools which
|
||||||
|
];
|
||||||
|
|
||||||
buildInputs = with python3Packages; [
|
buildInputs = [
|
||||||
bison chmlib file python setuptools which xapian zlib
|
bison chmlib python3Packages.python xapian zlib
|
||||||
] ++ lib.optional withGui qtbase
|
] ++ lib.optional withGui qtbase
|
||||||
++ lib.optional stdenv.isDarwin libiconv;
|
++ lib.optional stdenv.isDarwin libiconv;
|
||||||
|
|
||||||
@ -100,6 +102,6 @@ mkDerivation rec {
|
|||||||
homepage = "https://www.lesbonscomptes.com/recoll/";
|
homepage = "https://www.lesbonscomptes.com/recoll/";
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
maintainers = [ maintainers.jcumming ];
|
maintainers = with maintainers; [ jcumming kiyengar ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -7164,6 +7164,10 @@ in {
|
|||||||
|
|
||||||
recaptcha_client = callPackage ../development/python-modules/recaptcha_client { };
|
recaptcha_client = callPackage ../development/python-modules/recaptcha_client { };
|
||||||
|
|
||||||
|
recoll = disabledIf (!isPy3k) (toPythonModule (pkgs.recoll.override {
|
||||||
|
python3Packages = self;
|
||||||
|
}));
|
||||||
|
|
||||||
recommonmark = callPackage ../development/python-modules/recommonmark { };
|
recommonmark = callPackage ../development/python-modules/recommonmark { };
|
||||||
|
|
||||||
redbaron = callPackage ../development/python-modules/redbaron { };
|
redbaron = callPackage ../development/python-modules/redbaron { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user