mdslides: init at unstable-2022-12-15
This commit is contained in:
parent
5608f9dbad
commit
aecce41aa6
22
pkgs/tools/misc/mdslides/default.nix
Normal file
22
pkgs/tools/misc/mdslides/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ lib, fetchFromGitHub, python3Packages }:
|
||||
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "mdslides";
|
||||
version = "unstable-2022-12-15";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "dadoomer";
|
||||
repo = "markdown-slides";
|
||||
rev = "fd27dd09cf90f00093a393338e08953c8d65d68e";
|
||||
sha256 = "sha256-31ALsy1P/vfI+H6Onmg4TXLeKbVAQ1FlnFs4k6ZOgHQ=";
|
||||
};
|
||||
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
longDescription = "Using markdown, write simple but beautiful presentations with math, animations and media, which can be visualized in a web browser or exported to PDF.";
|
||||
homepage = "https://github.com/dadoomer/markdown-slides";
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.qjoly ];
|
||||
};
|
||||
}
|
@ -22640,6 +22640,8 @@ with pkgs;
|
||||
|
||||
markdown-anki-decks = callPackage ../tools/misc/markdown-anki-decks { };
|
||||
|
||||
mdslides = callPackage ../tools/misc/mdslides { };
|
||||
|
||||
micropython = callPackage ../development/interpreters/micropython { };
|
||||
|
||||
MIDIVisualizer = darwin.apple_sdk_11_0.callPackage ../applications/audio/midi-visualizer {
|
||||
|
Loading…
Reference in New Issue
Block a user