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

26 lines
692 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, rustPlatform, darwin }:
2020-09-15 18:25:33 +00:00
rustPlatform.buildRustPackage rec {
pname = "manix";
version = "0.6.2";
src = fetchFromGitHub {
owner = "mlvzk";
repo = pname;
rev = "v${version}";
sha256 = "0fv3sgzwjsgq2h1177r8r1cl5zrfja4ll801sd0bzj3nzmkyww7p";
};
2021-01-15 09:19:50 +00:00
buildInputs = lib.optional stdenv.isDarwin [ darwin.Security ];
2020-09-15 18:25:33 +00:00
cargoSha256 = "0f2q3bj1cmpbma0fjhc2lc92j4al78fhrx3yc37kmbgzaza0yan5";
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;
};
}