nix-doc 0.2.1

Nix documentation grepping tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ nixpkgs ? import <nixpkgs> { } }:
nixpkgs.rustPlatform.buildRustPackage {
  pname   = "nix-doc";
  version = "0.2.1";

  src = builtins.fetchGit ./.;

  cargoSha256 = "1n6kc82bisibkjkalc9q5fb4nq6x8a2y210x0s9fdcld1cl3x9a5";

  meta = with nixpkgs.stdenv.lib; {
    description = "A source-based Nix documentation tool";
    homepage    = "https://github.com/lf-/nix-doc";
    license     = licenses.lgpl3Plus;
    platforms   = platforms.all;
  };
}