core/pkgs/by-name/ni/nixdoc/default.nix

35 lines
781 B
Nix
Raw Normal View History

2024-05-13 23:17:51 +00:00
{
lib,
stdenv,
fetchFromGitHub,
rustPlatform,
darwin,
2024-06-30 08:16:52 +00:00
}:
let
2024-05-13 23:17:51 +00:00
version = "3.0.2";
in
2024-06-30 08:16:52 +00:00
rustPlatform.buildRustPackage {
pname = "nixdoc";
inherit version;
2024-05-13 23:17:51 +00:00
2024-06-30 08:16:52 +00:00
src = fetchFromGitHub {
owner = "nix-community";
repo = "nixdoc";
rev = "v${version}";
sha256 = "sha256-V3MAvbdYk3DL064UYcJE9HmwfQBwpMxVXWiAKX6honA=";
};
2024-05-13 23:17:51 +00:00
2024-06-30 08:16:52 +00:00
cargoHash = "sha256-RFxTjLiJCEc42Mb8rcayOFHkYk2GfpgsO3+hAaRwHgs=";
2024-05-13 23:17:51 +00:00
2024-06-30 08:16:52 +00:00
buildInputs = lib.optionals stdenv.isDarwin [ darwin.Security ];
2024-05-13 23:17:51 +00:00
2024-06-30 08:16:52 +00:00
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;
};
}