nixpkgs/pkgs/development/tools/fundoc/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
573 B
Nix
Raw Normal View History

2021-09-20 18:22:20 +00:00
{ lib, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
pname = "fundoc";
2022-07-08 11:30:37 +00:00
version = "0.4.2";
2021-09-20 18:22:20 +00:00
src = fetchFromGitHub {
owner = "csssr";
repo = pname;
rev = "v${version}";
2022-07-08 11:30:37 +00:00
sha256 = "sha256-qmsr4bhErpMzS71NhLep0EWimZb/S3aEhMbeBNa5y8E=";
2021-09-20 18:22:20 +00:00
};
2022-07-08 11:30:37 +00:00
cargoSha256 = "sha256-G2KRjkccS/rfrb7BtotbG6L4WaVnfwY1UEXLnVBLSzM=";
2021-09-20 18:22:20 +00:00
meta = with lib; {
description = "Language agnostic documentation generator";
homepage = "https://github.com/csssr/fundoc";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
};
}