depot/third_party/nixpkgs/pkgs/tools/bluetooth/bluez-tools/default.nix
Default email a5adf1ddd8 Project import generated by Copybara.
GitOrigin-RevId: b3616bd96400ce0252c241d76fcafb64389defc6
2021-01-15 23:18:51 +01:00

27 lines
645 B
Nix

{ lib, stdenv, autoreconfHook, readline
, fetchFromGitHub, glib, pkgconfig }:
stdenv.mkDerivation rec {
date = "2016-12-12";
name = "bluez-tools-${date}";
rev = "97efd29";
src = fetchFromGitHub {
inherit rev;
owner = "khvzak";
repo = "bluez-tools";
sha256 = "08xp77sf5wnq5086halmyk3vla4bfls06q1zrqdcq36hw6d409i6";
};
nativeBuildInputs = [ pkgconfig autoreconfHook ];
buildInputs = [ readline glib ];
meta = with lib; {
description = "Command line bluetooth manager for Bluez5";
license = licenses.gpl2;
maintainers = [ maintainers.dasuxullebt ];
platforms = platforms.unix;
};
}