fundoc: init at 0.4.1
This commit is contained in:
parent
32c21782a6
commit
d236e2cfb4
2 changed files with 24 additions and 0 deletions
22
pkgs/development/tools/fundoc/default.nix
Normal file
22
pkgs/development/tools/fundoc/default.nix
Normal file
|
@ -0,0 +1,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 ];
|
||||
};
|
||||
}
|
|
@ -14009,6 +14009,8 @@ with pkgs;
|
|||
inherit (darwin.apple_sdk.frameworks) IOKit;
|
||||
};
|
||||
|
||||
fundoc = callPackage ../development/tools/fundoc { };
|
||||
|
||||
funnelweb = callPackage ../development/tools/literate-programming/funnelweb { };
|
||||
|
||||
gede = libsForQt5.callPackage ../development/tools/misc/gede { };
|
||||
|
|
Loading…
Reference in a new issue