forked from auxolotl/core
nixdoc: init at 3.0.2
This commit is contained in:
parent
4d829429ca
commit
62be37ac4b
33
pkgs/by-name/ni/nixdoc/default.nix
Normal file
33
pkgs/by-name/ni/nixdoc/default.nix
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
{
|
||||||
|
lib,
|
||||||
|
stdenv,
|
||||||
|
fetchFromGitHub,
|
||||||
|
rustPlatform,
|
||||||
|
darwin,
|
||||||
|
}: let
|
||||||
|
version = "3.0.2";
|
||||||
|
in
|
||||||
|
rustPlatform.buildRustPackage {
|
||||||
|
pname = "nixdoc";
|
||||||
|
inherit version;
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "nix-community";
|
||||||
|
repo = "nixdoc";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "sha256-V3MAvbdYk3DL064UYcJE9HmwfQBwpMxVXWiAKX6honA=";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoHash = "sha256-RFxTjLiJCEc42Mb8rcayOFHkYk2GfpgsO3+hAaRwHgs=";
|
||||||
|
|
||||||
|
buildInputs = lib.optionals stdenv.isDarwin [darwin.Security];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Generate documentation for Nix functions";
|
||||||
|
mainProgram = "nixdoc";
|
||||||
|
homepage = "https://github.com/nix-community/nixdoc";
|
||||||
|
license = lib.licenses.gpl3;
|
||||||
|
# maintainers = with lib.maintainers; [ infinisil hsjobeki ];
|
||||||
|
platforms = lib.platforms.unix;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue