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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
636 B
Nix
Raw Normal View History

{ lib, stdenv, autoreconfHook, readline
, fetchFromGitHub, glib, pkg-config }:
stdenv.mkDerivation rec {
version = "unstable-2020-10-24";
pname = "bluez-tools";
2017-03-24 23:09:15 +00:00
src = fetchFromGitHub {
owner = "khvzak";
repo = "bluez-tools";
rev = "f65321736475429316f07ee94ec0deac8e46ec4a";
sha256 = "0xk39lz3hm8lcnb5fdbfz4ldbbq8gswg95vilzdwxzrglcr6xnqq";
};
2017-03-24 23:09:15 +00:00
nativeBuildInputs = [ pkg-config autoreconfHook ];
2017-03-24 23:09:15 +00:00
buildInputs = [ readline glib ];
meta = with lib; {
description = "Command line bluetooth manager for Bluez5";
2017-03-24 23:09:15 +00:00
license = licenses.gpl2;
maintainers = [ ];
platforms = platforms.unix;
};
}