mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 00:53:57 +00:00
50 lines
1.2 KiB
Nix
50 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
darwin,
|
|
fetchFromGitHub,
|
|
rustPlatform,
|
|
versionCheckHook,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "nbtscanner";
|
|
version = "0.0.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jonkgrimes";
|
|
repo = "nbtscanner";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-lnTTutOc829COwfNhBkSK8UpiNnGsm7Da53b+eSBt1Q=";
|
|
};
|
|
|
|
cargoHash = "sha256-NffNQXKJ+b1w7Ar2M6UDev/AxruDEf8IGQ+mNdvU6e4=";
|
|
|
|
cargoPatches = [
|
|
./Cargo.lock.patch
|
|
];
|
|
|
|
postPatch = ''
|
|
# https://github.com/jonkgrimes/nbtscanner/issues/4
|
|
substituteInPlace src/main.rs \
|
|
--replace-fail '.version("0.1")' '.version("${version}")'
|
|
'';
|
|
|
|
buildInputs = lib.optional stdenv.hostPlatform.isDarwin [ darwin.apple_sdk.frameworks.Security ];
|
|
|
|
nativeInstallCheckInputs = [ versionCheckHook ];
|
|
|
|
doInstallCheck = true;
|
|
|
|
versionCheckProgramArg = [ "--version" ];
|
|
|
|
meta = with lib; {
|
|
description = "NetBIOS scanner written in Rust";
|
|
homepage = "https://github.com/jonkgrimes/nbtscanner";
|
|
changelog = "https://github.com/jonkgrimes/nbtscanner/releases/tag/${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
mainProgram = "nbtscanner";
|
|
};
|
|
}
|