summary refs log blame commit diff
path: root/pkgs/applications/networking/mhost/default.nix
blob: beed066e65e98da8b40f3210fc24901896cfca1a (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
                                                         













                                                                       

                                                      










                                                                                                                                    
{ lib, stdenv, fetchFromGitHub, rustPlatform, Security }:

rustPlatform.buildRustPackage rec {
  pname = "mhost";
  version = "0.3.0";

  src = fetchFromGitHub {
    owner = "lukaspustina";
    repo = pname;
    rev = "v${version}";
    sha256 = "1j0378f8gj8hdcdhpj6lqlnriasmjxzri42wjj9pygzkmpd3ym86";
  };

  cargoSha256 = "0gqrya0bpdd67k2sxib7f4npnrx84d9r4hjq2sg2xz4j8pmgs018";

  buildInputs = lib.optional stdenv.isDarwin Security;

  CARGO_CRATE_NAME = "mhost";

  doCheck = false;

  meta = with lib; {
    description = "A modern take on the classic host DNS lookup utility including an easy to use and very fast Rust lookup library";
    homepage = "https://github.com/lukaspustina/mhost";
    license = with licenses; [ asl20 /* or */ mit ];
    maintainers = [ maintainers.mgttlinger ];
  };
}