Skip to content

Commit

Permalink
plakativ: init at 0.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
marcin-serwin committed Jan 4, 2025
1 parent c252290 commit 71b5733
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions pkgs/by-name/pl/plakativ/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
lib,
python3Packages,
fetchPypi,
guiSupport ? true,
}:
let
pname = "plakativ";
version = "0.5.2";
in
python3Packages.buildPythonApplication {
inherit pname version;

src = fetchPypi {
inherit pname version;
hash = "sha256-pRRx/cBgf+HK9NZ1NnakL/dbxGn1UNHJOGvC3I70QGI=";
};

dependencies =
with python3Packages;
[
pymupdf
]
++ lib.optional guiSupport tkinter;

meta = {
description = "Convert a PDF into a large poster that can be printed on multiple smaller pages";
mainProgram = "plakativ";
homepage = "https://gitlab.mister-muffin.de/josch/plakativ";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ marcin-serwin ];
};
}

0 comments on commit 71b5733

Please sign in to comment.