b3792b44c5
Applies https://github.com/nix-community/nixdoc/pull/27 and fixes up the location information rendering, allowing lib functions to be nested in further scopes Needed for later commits
34 lines
1.0 KiB
Nix
34 lines
1.0 KiB
Nix
{ lib, stdenv, fetchFromGitHub, fetchpatch, rustPlatform, darwin }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "nixdoc";
|
|
version = "1.0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tazjin";
|
|
repo = "nixdoc";
|
|
rev = "v${version}";
|
|
sha256 = "14d4dq06jdqazxvv7fq5872zy0capxyb0fdkp8qg06gxl1iw201s";
|
|
};
|
|
|
|
patches = [
|
|
# Support nested identifiers https://github.com/nix-community/nixdoc/pull/27
|
|
(fetchpatch {
|
|
url = "https://github.com/nix-community/nixdoc/pull/27/commits/ea542735bf675fe2ccd37edaffb9138d1a8c1b7e.patch";
|
|
sha256 = "1fmz44jv2r9qsnjxvkkjfb0safy69l4x4vx1g5gisrp8nwdn94rj";
|
|
})
|
|
];
|
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ darwin.Security ];
|
|
|
|
cargoSha256 = "1nv6g8rmjjbwqmjkrpqncypqvx5c7xp2zlx5h6rw2j9d1wlys0v5";
|
|
|
|
meta = with lib; {
|
|
description = "Generate documentation for Nix functions";
|
|
homepage = "https://github.com/tazjin/nixdoc";
|
|
license = [ licenses.gpl3 ];
|
|
maintainers = [ maintainers.tazjin ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|