marker 0.9.0

Tool for finding issues in CommonMark documents
1
2
3
4
5
6
7
8
9
10
11
12
13
14
with import <nixpkgs> {
  overlays = [ (import (builtins.fetchTarball https://github.com/mozilla/nixpkgs-mozilla/archive/master.tar.gz)) ];
};

stdenv.mkDerivation {
  name = "marker";
  buildInputs = [
    openssl
    pkgconfig
    (rustChannels.stable.rust.override {
      extensions = [ "clippy-preview" ];
    })
  ];
}