depot/third_party/nixpkgs/pkgs/tools/security/dnspeep/default.nix
Default email e18f6fb5f9 Project import generated by Copybara.
GitOrigin-RevId: 9df2cb074d72ea80ac9fd225b29060c8cf13dd39
2021-08-11 16:56:57 +02:00

32 lines
870 B
Nix

{ fetchFromGitHub, lib, libpcap, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "dnspeep";
version = "0.1.2";
src = fetchFromGitHub {
owner = "jvns";
repo = pname;
rev = "v${version}";
sha256 = "0lz22vlgi1alsq676q4nlzfzwnsrvziyqdnmdbn00rwqsvlb81q6";
};
# dnspeep has git dependencies therefore doesn't work with `cargoSha256`
cargoLock = {
# update Cargo.lock every update
lockFile = ./Cargo.lock;
outputHashes = {
"pcap-0.8.1" = "1nnfyhlhcpbl4i6zmfa9rvnvr6ibg5khran1f5yhmr9yfhmhgakd";
};
};
LIBPCAP_LIBDIR = lib.makeLibraryPath [ libpcap ];
LIBPCAP_VER = libpcap.version;
meta = with lib; {
description = "Spy on the DNS queries your computer is making";
homepage = "https://github.com/jvns/dnspeep";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
};
}