mdsh 0.7.0

Markdown shell pre-processor
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ pkgs ? import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/nixos-22.05.tar.gz") { } }:
pkgs.mkShell {
  buildInputs = [
    pkgs.cargo
    pkgs.cargo.passthru.rustc
    pkgs.gitAndTools.git-extras
    pkgs.gitAndTools.pre-commit
    pkgs.libiconv
    pkgs.rustfmt
  ];

  shellHook = ''
    export PATH=$PWD/target/debug:$PATH
  '';
}