2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, rustPlatform, darwin }:
|
2018-10-28 18:46:16 +01:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-08-31 13:41:23 +02:00
|
|
|
pname = "nixdoc";
|
2018-10-28 18:46:16 +01:00
|
|
|
version = "1.0.1";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "tazjin";
|
|
|
|
repo = "nixdoc";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "14d4dq06jdqazxvv7fq5872zy0capxyb0fdkp8qg06gxl1iw201s";
|
|
|
|
};
|
|
|
|
|
2021-01-15 10:19:50 +01:00
|
|
|
buildInputs = lib.optional stdenv.isDarwin [ darwin.Security ];
|
2018-10-28 18:46:16 +01:00
|
|
|
|
2020-02-16 22:05:21 +01:00
|
|
|
cargoSha256 = "1vamwynkbnffs8ryr2zb1a41cymjvr8zzh1bifyh9hpkx2k11rs3";
|
2018-10-28 18:46:16 +01:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2018-10-28 18:46:16 +01:00
|
|
|
description = "Generate documentation for Nix functions";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/tazjin/nixdoc";
|
2018-10-28 18:46:16 +01:00
|
|
|
license = [ licenses.gpl3 ];
|
|
|
|
maintainers = [ maintainers.tazjin ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|