forked from mirrors/nixpkgs
bluez-tools: init 2015-09-10 (close #12936)
vcunat only fixed whitespace and changed the authorship e-mail from dummy address you@example.com to the one recorded in maintainers.nix. (Now github should recognize the commit as yours.)
This commit is contained in:
parent
5d2c5a920d
commit
50bd1a0e8f
|
@ -75,6 +75,7 @@
|
|||
cstrahan = "Charles Strahan <charles.c.strahan@gmail.com>";
|
||||
cwoac = "Oliver Matthews <oliver@codersoffortune.net>";
|
||||
DamienCassou = "Damien Cassou <damien@cassou.me>";
|
||||
dasuxullebt = "Christoph-Simon Senjak <christoph.senjak@googlemail.com>";
|
||||
davidak = "David Kleuker <post@davidak.de>";
|
||||
davidrusu = "David Rusu <davidrusu.me@gmail.com>";
|
||||
dbohdan = "Danyil Bohdan <danyil.bohdan@gmail.com>";
|
||||
|
|
24
pkgs/tools/bluetooth/bluez-tools/default.nix
Normal file
24
pkgs/tools/bluetooth/bluez-tools/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{ stdenv, autoconf, automake, glib, pkgconfig, readline, fetchgit }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
date = "2015-09-10";
|
||||
name = "bluez-tools-${date}";
|
||||
rev = "193ad6bb3db";
|
||||
|
||||
src = fetchgit {
|
||||
inherit rev;
|
||||
url = "https://github.com/khvzak/bluez-tools.git";
|
||||
sha256 = "3f264d14ba8ef1b0d3c45e621a5c685035a60d789da64f64d25055047f45c55b";
|
||||
};
|
||||
preConfigure = ''
|
||||
./autogen.sh
|
||||
'';
|
||||
buildInputs = [ stdenv autoconf automake glib pkgconfig readline ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Command line bluetooth manager for Bluez5";
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
maintainers = [ maintainers.dasuxullebt ];
|
||||
};
|
||||
|
||||
}
|
|
@ -721,6 +721,8 @@ let
|
|||
|
||||
blockdiag = pythonPackages.blockdiag;
|
||||
|
||||
bluez-tools = callPackage ../tools/bluetooth/bluez-tools { };
|
||||
|
||||
bmon = callPackage ../tools/misc/bmon { };
|
||||
|
||||
bochs = callPackage ../applications/virtualization/bochs { };
|
||||
|
|
Loading…
Reference in a new issue