nixpkgs/pkgs/tools/bluetooth/bluez-tools/default.nix

28 lines
647 B
Nix
Raw Normal View History

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