2021-01-15 22:18:51 +00:00
|
|
|
{ lib, stdenv, autoreconfHook, readline
|
2021-02-05 17:12:51 +00:00
|
|
|
, fetchFromGitHub, glib, pkg-config }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2022-06-16 17:23:12 +00:00
|
|
|
version = "unstable-2020-10-24";
|
2021-12-06 16:07:01 +00:00
|
|
|
pname = "bluez-tools";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "khvzak";
|
|
|
|
repo = "bluez-tools";
|
2022-06-16 17:23:12 +00:00
|
|
|
rev = "f65321736475429316f07ee94ec0deac8e46ec4a";
|
|
|
|
sha256 = "0xk39lz3hm8lcnb5fdbfz4ldbbq8gswg95vilzdwxzrglcr6xnqq";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
nativeBuildInputs = [ pkg-config autoreconfHook ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildInputs = [ readline glib ];
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Command line bluetooth manager for Bluez5";
|
|
|
|
license = licenses.gpl2;
|
2022-07-14 12:49:19 +00:00
|
|
|
maintainers = [ ];
|
2020-04-24 23:36:52 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|