comic-mandown: init at 1.5.0

Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
This commit is contained in:
Sefa Eyeoglu 2023-09-27 10:53:02 +02:00
parent c884a7d5b7
commit 0033f0f1ce
No known key found for this signature in database
GPG key ID: E13DFD4B47127951

View file

@ -0,0 +1,17 @@
{ lib
, python3Packages
, fetchFromGitHub
, withGUI ? true
}:
let
mandown' = python3Packages.mandown.overrideAttrs (prev: {
propagatedBuildInputs = prev.propagatedBuildInputs ++ lib.optionals withGUI prev.passthru.optional-dependencies.gui;
});
mandownApp = python3Packages.toPythonApplication mandown';
in
mandownApp // {
meta = mandownApp.meta // {
mainProgram = "mandown";
};
}