bluewalker: init at 0.3.0

This commit is contained in:
Simon Schoeters 2022-06-04 14:53:26 +02:00 committed by ehmry
parent cd4f6555ed
commit 6f0b4a92dc
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ lib, buildGoModule, fetchFromGitLab }:
buildGoModule rec {
pname = "bluewalker";
version = "0.3.0";
src = fetchFromGitLab {
owner = "jtaimisto";
repo = pname;
rev = "v${version}";
sha256 = "sha256-spuJRiNiaBV4EsetUq8vUfR6ejUNZxLhVzS3AZZyrrQ=";
};
vendorSha256 = "189qs6vmx63vwsjmc4qgf1y8xjsi7x6l1f5c3kd8j8jnagl26z4h";
ldflags = [ # omit some things for a smaller binary
"-w" # omit the DWARF symbol table
"-s" # omit symbol table and debug info
];
meta = with lib; {
description = "Simple command line Bluetooth LE scanner";
homepage = src.meta.homepage;
changelog = "https://gitlab.com/jtaimisto/${pname}/-/raw/master/CHANGELOG";
license = licenses.bsd2;
maintainers = with maintainers; [ cimm ];
platforms = platforms.linux;
};
}

View file

@ -2710,6 +2710,8 @@ with pkgs;
bluemix-cli = callPackage ../tools/admin/bluemix-cli { };
bluewalker = callPackage ../tools/bluetooth/bluewalker { };
blur-effect = callPackage ../tools/graphics/blur-effect { };
bootiso = callPackage ../tools/cd-dvd/bootiso { };