mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 11:00:19 +03:00
mhost: init at 0.3.0 (#140455)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
d4129f74eb
commit
3009b7e500
26
pkgs/applications/networking/mhost/default.nix
Normal file
26
pkgs/applications/networking/mhost/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ fetchFromGitHub, rustPlatform, lib }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "mhost";
|
||||
version = "0.3.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "lukaspustina";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "1j0378f8gj8hdcdhpj6lqlnriasmjxzri42wjj9pygzkmpd3ym86";
|
||||
};
|
||||
|
||||
cargoSha256 = "0gqrya0bpdd67k2sxib7f4npnrx84d9r4hjq2sg2xz4j8pmgs018";
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -7429,6 +7429,8 @@ with pkgs;
|
||||
|
||||
metasploit = callPackage ../tools/security/metasploit { };
|
||||
|
||||
mhost = callPackage ../applications/networking/mhost { };
|
||||
|
||||
ms-sys = callPackage ../tools/misc/ms-sys { };
|
||||
|
||||
mtdutils = callPackage ../tools/filesystems/mtdutils { };
|
||||
|
Loading…
Reference in New Issue
Block a user