bluez-tools: 2015-09-10 -> 2016-12-12

This commit is contained in:
ndowens 2017-03-24 18:09:15 -05:00
parent 24a69286e9
commit 6c9e6c218c

View file

@ -1,23 +1,25 @@
{ stdenv, autoconf, automake, glib, pkgconfig, readline, fetchgit }:
{ stdenv, autoreconfHook, readline
, fetchFromGitHub, glib, pkgconfig }:
stdenv.mkDerivation rec {
date = "2015-09-10";
date = "2016-12-12";
name = "bluez-tools-${date}";
rev = "193ad6bb3db";
rev = "97efd29";
src = fetchgit {
src = fetchFromGitHub {
inherit rev;
url = "https://github.com/khvzak/bluez-tools.git";
sha256 = "0ylk10gfqlwmiz1k355axdhraixc9zym9f87xhag23934x64m8wa";
owner = "khvzak";
repo = "bluez-tools";
sha256 = "08xp77sf5wnq5086halmyk3vla4bfls06q1zrqdcq36hw6d409i6";
};
preConfigure = ''
./autogen.sh
'';
buildInputs = [ stdenv autoconf automake glib pkgconfig readline ];
nativeBuildInputs = [ pkgconfig autoreconfHook ];
buildInputs = [ readline glib ];
meta = with stdenv.lib; {
description = "Command line bluetooth manager for Bluez5";
license = stdenv.lib.licenses.gpl2;
license = licenses.gpl2;
maintainers = [ maintainers.dasuxullebt ];
platforms = platforms.unix;
};