p4d-mdproof 0.1.2

Markdown to PDF converter
Documentation
1
2
3
4
5
6
7
8
9
10
{ pkgs ? import <nixpkgs> {} }:
with pkgs;

stdenv.mkDerivation {
name = "mdproof-env";
buildInputs = [
  rustChannels.stable.rust
  gcc
];
}