nixpkgs/pkgs/tools/security/nbtscanner/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
703 B
Nix
Raw Normal View History

2021-04-26 21:53:39 +00:00
{ lib
, stdenv
, rustPlatform
, fetchFromGitHub
, Security
}:
rustPlatform.buildRustPackage rec {
pname = "nbtscanner";
2023-08-26 01:42:26 +00:00
version = "0.0.2";
2021-04-26 21:53:39 +00:00
src = fetchFromGitHub {
owner = "jonkgrimes";
repo = pname;
rev = version;
2023-08-26 01:42:26 +00:00
hash = "sha256-lnTTutOc829COwfNhBkSK8UpiNnGsm7Da53b+eSBt1Q=";
2021-04-26 21:53:39 +00:00
};
2023-08-26 01:42:26 +00:00
cargoHash = "sha256-NffNQXKJ+b1w7Ar2M6UDev/AxruDEf8IGQ+mNdvU6e4=";
cargoPatches = [
./Cargo.lock.patch
];
2021-04-26 21:53:39 +00:00
buildInputs = lib.optional stdenv.isDarwin Security;
meta = with lib; {
description = "NetBIOS scanner written in Rust";
homepage = "https://github.com/jonkgrimes/nbtscanner";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}