forked from mirrors/nixpkgs
bore: init at 0.3.3 (#129295)
This commit is contained in:
parent
00c86ad146
commit
8eb54b8e09
47
pkgs/tools/networking/bore/default.nix
Normal file
47
pkgs/tools/networking/bore/default.nix
Normal file
|
@ -0,0 +1,47 @@
|
|||
{ lib, stdenv, rustPlatform, fetchFromBitbucket, llvmPackages, Libsystem, SystemConfiguration, installShellFiles }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "bore";
|
||||
version = "0.3.3";
|
||||
|
||||
src = fetchFromBitbucket {
|
||||
owner = "delan";
|
||||
repo = "nonymous";
|
||||
rev = version;
|
||||
sha256 = "0gws1f625izrb3armh6bay1k8l9p9csl37jx03yss1r720k4vn2x";
|
||||
};
|
||||
|
||||
cargoSha256 = "1n09gcp1y885lz6g2f73zw3fd0fmv7nwlvaqba2yl0kylzk7naa6";
|
||||
cargoBuildFlags = "-p ${pname}";
|
||||
|
||||
# FIXME can’t test --all-targets and --doc in a single invocation
|
||||
cargoTestFlags = "--features std --all-targets --workspace";
|
||||
|
||||
nativeBuildInputs = [ installShellFiles ]
|
||||
++ lib.optional stdenv.isDarwin llvmPackages.libclang;
|
||||
|
||||
buildInputs = lib.optionals stdenv.isDarwin [
|
||||
Libsystem
|
||||
SystemConfiguration
|
||||
];
|
||||
|
||||
LIBCLANG_PATH="${llvmPackages.libclang.lib}/lib";
|
||||
|
||||
postInstall = ''
|
||||
installManPage $src/bore/doc/bore.1
|
||||
'';
|
||||
|
||||
doInstallCheck = true;
|
||||
installCheckPhase = ''
|
||||
printf '\0\0\0\0\0\0\0\0\0\0\0\0' \
|
||||
| $out/bin/bore --decode \
|
||||
| grep -q ';; NoError #0 Query 0 0 0 0 flags'
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "DNS query tool";
|
||||
homepage = "https://crates.io/crates/bore";
|
||||
license = licenses.isc;
|
||||
maintainers = [ maintainers.delan ];
|
||||
};
|
||||
}
|
|
@ -3831,6 +3831,11 @@ in
|
|||
|
||||
agebox = callPackage ../tools/security/agebox { };
|
||||
|
||||
bore = callPackage ../tools/networking/bore {
|
||||
inherit (darwin) Libsystem;
|
||||
inherit (darwin.apple_sdk.frameworks) SystemConfiguration;
|
||||
};
|
||||
|
||||
brotli = callPackage ../tools/compression/brotli { };
|
||||
|
||||
biosdevname = callPackage ../tools/networking/biosdevname { };
|
||||
|
|
Loading…
Reference in a new issue