3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/package-management/nix-doc/default.nix

30 lines
847 B
Nix
Raw Normal View History

{ lib, rustPlatform, fetchFromGitHub, boost, nix, pkg-config }:
2020-08-12 02:19:11 +01:00
rustPlatform.buildRustPackage rec {
pname = "nix-doc";
version = "0.3.3";
src = fetchFromGitHub {
rev = "v${version}";
owner = "lf-";
repo = "nix-doc";
sha256 = "0vd7159y5w8jjgaw51kfr3z3r50299gvw7vjchpqx3nwmdink8bh";
};
doCheck = true;
buildInputs = [ boost nix ];
nativeBuildInputs = [ pkg-config ];
cargoSha256 = "0xsy13yxm8vblab73gynb781ya168w66c32i1lyv0ns1lnz61dmh";
2020-08-12 02:19:11 +01:00
meta = with lib; {
2020-08-12 02:19:11 +01:00
description = "An interactive Nix documentation tool";
longDescription = "An interactive Nix documentation tool providing a CLI for function search and a Nix plugin for docs in the REPL";
homepage = "https://github.com/lf-/nix-doc";
license = licenses.lgpl3;
maintainers = [ maintainers.lf- ];
platforms = platforms.unix;
};
}