about summary refs log tree commit diff
path: root/pkgs/development/tools/fundoc/default.nix
blob: 47484b78759c60765cb20a2f17b608514e07519b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, rustPlatform, fetchFromGitHub }:

rustPlatform.buildRustPackage rec {
  pname = "fundoc";
  version = "0.4.1";

  src = fetchFromGitHub {
    owner = "csssr";
    repo = pname;
    rev = "v${version}";
    sha256 = "0nd03c2lz07ghaab67kgl5pw8z8mv6kwx3xzr4pqr7v5b983py6v";
  };

  cargoSha256 = "sha256-6riBlCyqNN2nzgwfVfbRy1avT9b0PdetOrbmbaltsjE=";

  meta = with lib; {
    description = "Language agnostic documentation generator";
    homepage = "https://github.com/csssr/fundoc";
    license = licenses.mit;
    maintainers = with maintainers; [ figsoda ];
  };
}