Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mate.atril: add support for more filetypes #93851

Merged
merged 1 commit into from Jul 27, 2020
Merged

Conversation

dawidsowa
Copy link
Contributor

Motivation for this change

Atril was built without support for some filetypes.

This PR adds (enabled by default) support for djvu, epub, postscript and xps, plus (disabled by default) for images.

Things done
  • Tested using sandboxing (nix.useSandbox on NixOS, or option sandbox in nix.conf on non-NixOS linux)
  • Built on platform(s)
    • NixOS
    • macOS
    • other Linux distributions
  • Tested via one or more NixOS test(s) if existing and applicable for the change (look inside nixos/tests)
  • Tested compilation of all pkgs that depend on this change using nix-shell -p nixpkgs-review --run "nixpkgs-review wip"
  • Tested execution of all binary files (usually in ./result/bin/)
  • Determined the impact on package closure size (by running nix path-info -S before and after)
  • Ensured that relevant documentation is up to date
  • Fits CONTRIBUTING.md.

(optionals (enablePostScript) libspectre)
(optionals (enableXps) libgxps)
];

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

optionals always returns a list. When its condition is false, the list is empty. Otherwise it has one element. Therefore it is not approppriate inside the list of build dependences. Instead the result of optionals should be appended to a list with the other elements.

Something like this:

  buildInputs = [
    gtk3
    glib
    itstool
    libsecret
    libxml2
    poppler
    mate.caja
    mate.mate-desktop
    hicolor-icon-theme
    texlive.bin.core  # for synctex, used by the pdf back-end
  ]
  ++ optionals enableDjvu djvulibre
  ++ optionals enableEpub webkitgtk
  ++ optionals enablePostScript libspectre
  ++ optionals enableXps libgxps
  ;

optionals is documented at https://nixos.org/nixpkgs/manual/#sec-functions-library

(optionals (enableEpub) "--enable-epub")
(optionals (enablePostScript) "--enable-ps")
(optionals (enableXps) "--enable-xps")
(optionals (enableImages) "--enable-pixbuf")
];
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Again optionals should not be used inside a list, but apeended.

@romildo romildo merged commit 89cb711 into NixOS:master Jul 27, 2020
@dawidsowa dawidsowa deleted the atril branch October 11, 2020 22:27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants