2021-02-05 17:12:51 +00:00
|
|
|
{ lib, rustPlatform, fetchFromGitHub, boost, nix, pkg-config }:
|
2020-08-20 17:08:02 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "nix-doc";
|
2022-06-16 17:23:12 +00:00
|
|
|
version = "0.5.4";
|
2020-08-20 17:08:02 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
rev = "v${version}";
|
|
|
|
owner = "lf-";
|
|
|
|
repo = "nix-doc";
|
2022-06-16 17:23:12 +00:00
|
|
|
sha256 = "sha256-bijcLIRBfoqirwz98Q3uQjHXSOaaqZECfav4TUvCuxg=";
|
2020-08-20 17:08:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
buildInputs = [ boost nix ];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
|
2022-06-16 17:23:12 +00:00
|
|
|
cargoSha256 = "sha256-LpcAMsBeNa2GDGN7+9rTtkQluPfHSnAxanRtDtRahzc=";
|
2020-08-20 17:08:02 +00:00
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-08-20 17:08:02 +00:00
|
|
|
description = "An interactive Nix documentation tool";
|
2021-07-14 22:03:04 +00:00
|
|
|
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-20 17:08:02 +00:00
|
|
|
homepage = "https://github.com/lf-/nix-doc";
|
2021-07-14 22:03:04 +00:00
|
|
|
license = licenses.lgpl3Plus;
|
2020-08-20 17:08:02 +00:00
|
|
|
maintainers = [ maintainers.lf- ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|