Merge pull request #24307 from ndowens/bluez-tools
bluez-tools: 2015-09-10 -> 2016-12-12
This commit is contained in:
commit
984cd56ac5
@ -1,23 +1,25 @@
|
|||||||
{ stdenv, autoconf, automake, glib, pkgconfig, readline, fetchgit }:
|
{ stdenv, autoreconfHook, readline
|
||||||
|
, fetchFromGitHub, glib, pkgconfig }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
date = "2015-09-10";
|
date = "2016-12-12";
|
||||||
name = "bluez-tools-${date}";
|
name = "bluez-tools-${date}";
|
||||||
rev = "193ad6bb3db";
|
rev = "97efd29";
|
||||||
|
|
||||||
src = fetchgit {
|
src = fetchFromGitHub {
|
||||||
inherit rev;
|
inherit rev;
|
||||||
url = "https://github.com/khvzak/bluez-tools.git";
|
owner = "khvzak";
|
||||||
sha256 = "0ylk10gfqlwmiz1k355axdhraixc9zym9f87xhag23934x64m8wa";
|
repo = "bluez-tools";
|
||||||
|
sha256 = "08xp77sf5wnq5086halmyk3vla4bfls06q1zrqdcq36hw6d409i6";
|
||||||
};
|
};
|
||||||
preConfigure = ''
|
|
||||||
./autogen.sh
|
nativeBuildInputs = [ pkgconfig autoreconfHook ];
|
||||||
'';
|
|
||||||
buildInputs = [ stdenv autoconf automake glib pkgconfig readline ];
|
buildInputs = [ readline glib ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Command line bluetooth manager for Bluez5";
|
description = "Command line bluetooth manager for Bluez5";
|
||||||
license = stdenv.lib.licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
maintainers = [ maintainers.dasuxullebt ];
|
maintainers = [ maintainers.dasuxullebt ];
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user