nixpkgs/pkgs/tools/nix/manix/default.nix

26 lines
696 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, rustPlatform, darwin, Security }:
2020-09-15 18:25:33 +00:00
rustPlatform.buildRustPackage rec {
pname = "manix";
version = "0.6.3";
2020-09-15 18:25:33 +00:00
src = fetchFromGitHub {
owner = "mlvzk";
repo = pname;
rev = "v${version}";
sha256 = "1b7xi8c2drbwzfz70czddc4j33s7g1alirv12dwl91hbqxifx8qs";
2020-09-15 18:25:33 +00:00
};
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
2020-09-15 18:25:33 +00:00
cargoSha256 = "1yivx9vzk2fvncvlkwq5v11hb9llr1zlcmy69y12q6xnd9rd8x1b";
2020-09-15 18:25:33 +00:00
meta = with lib; {
2020-09-15 18:25:33 +00:00
description = "A Fast Documentation Searcher for Nix";
homepage = "https://github.com/mlvzk/manix";
license = [ licenses.mpl20 ];
maintainers = [ maintainers.mlvzk ];
platforms = platforms.unix;
};
}