nixpkgs/pkgs/tools/package-management/nix-doc/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
893 B
Nix
Raw Normal View History

{ lib, rustPlatform, fetchFromGitHub, boost, nix, pkg-config }:
2020-08-12 01:19:11 +00:00
rustPlatform.buildRustPackage rec {
pname = "nix-doc";
version = "0.5.8";
2020-08-12 01:19:11 +00:00
src = fetchFromGitHub {
rev = "v${version}";
owner = "lf-";
repo = "nix-doc";
sha256 = "sha256-murez5uHLv1YXIaDDaFXCDPPggK1GAXjaSmZJhlqN80=";
2020-08-12 01:19:11 +00:00
};
doCheck = true;
buildInputs = [ boost nix ];
2023-01-18 01:14:11 +00:00
nativeBuildInputs = [ pkg-config nix ];
2020-08-12 01:19:11 +00:00
cargoSha256 = "sha256-+6I6+LZs84OcyebAIg/9KeAxV1UdK9IgaT7UsPJ5rWQ=";
2020-08-12 01:19:11 +00:00
meta = with lib; {
2020-08-12 01:19:11 +00:00
description = "An interactive Nix documentation tool";
longDescription = "An interactive Nix documentation tool providing a CLI for function search, a Nix plugin for docs in the REPL, and a ctags implementation for Nix script";
2020-08-12 01:19:11 +00:00
homepage = "https://github.com/lf-/nix-doc";
license = licenses.lgpl3Plus;
2020-08-12 01:19:11 +00:00
maintainers = [ maintainers.lf- ];
platforms = platforms.unix;
};
}