nixpkgs/pkgs/tools/nix/nixdoc/default.nix
Benjamin Hipple 940e6968f1 nixdoc: upgrade cargo fetcher and cargoSha256
Infra upgrade as part of #79975; no functional change expected.
2020-02-16 16:05:21 -05:00

26 lines
710 B
Nix

{ stdenv, fetchFromGitHub, rustPlatform, darwin }:
rustPlatform.buildRustPackage rec {
pname = "nixdoc";
version = "1.0.1";
src = fetchFromGitHub {
owner = "tazjin";
repo = "nixdoc";
rev = "v${version}";
sha256 = "14d4dq06jdqazxvv7fq5872zy0capxyb0fdkp8qg06gxl1iw201s";
};
buildInputs = stdenv.lib.optional stdenv.isDarwin [ darwin.Security ];
cargoSha256 = "1vamwynkbnffs8ryr2zb1a41cymjvr8zzh1bifyh9hpkx2k11rs3";
meta = with stdenv.lib; {
description = "Generate documentation for Nix functions";
homepage = https://github.com/tazjin/nixdoc;
license = [ licenses.gpl3 ];
maintainers = [ maintainers.tazjin ];
platforms = platforms.unix;
};
}