Merge pull request #155116 from wentasah/amc-add-oodoc

auto-multiple-choice: add OpenOfficeOODoc perl module as dependency
This commit is contained in:
Stig 2022-01-27 17:37:02 +01:00 committed by GitHub
commit 196873f601
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 1 deletions

View File

@ -65,7 +65,7 @@ stdenv.mkDerivation rec {
postFixup = ''
wrapProgram $out/bin/auto-multiple-choice \
''${makeWrapperArgs[@]} \
--prefix PERL5LIB : "${with perlPackages; makePerlPath [
--prefix PERL5LIB : "${with perlPackages; makeFullPerlPath [
ArchiveZip
DBDSQLite
Cairo
@ -75,6 +75,7 @@ stdenv.mkDerivation rec {
GlibObjectIntrospection
Gtk3
LocaleGettext
OpenOfficeOODoc
PerlMagick
TextCSV
XMLParser

View File

@ -17024,6 +17024,20 @@ let
doCheck = false;
};
OpenOfficeOODoc = buildPerlPackage {
pname = "OpenOffice-OODoc";
version = "2.125";
src = fetchurl {
url = "mirror://cpan/authors/id/J/JM/JMGDOC/OpenOffice-OODoc-2.125.tar.gz";
sha256 = "1dnsj63svxq0hi3aci4x7binql8kr754inlkks5jmi4k0sblh561";
};
propagatedBuildInputs = [ ArchiveZip XMLTwig ];
meta = {
license = with lib.licenses; [ lgpl21 ];
maintainers = [ maintainers.wentasah ];
};
};
NetOpenIDCommon = buildPerlPackage {
pname = "Net-OpenID-Common";
version = "1.20";