summary refs log tree commit diff
path: root/pkgs/tools/bluetooth
diff options
context:
space:
mode:
authorChristoph-Simon Senjak <christoph.senjak@googlemail.com>2016-02-12 14:40:49 +0100
committerVladimír Čunát <vcunat@gmail.com>2016-02-15 17:23:36 +0100
commit50bd1a0e8f388ba64b5f8fca39ed332c051ff7b2 (patch)
tree051b2f29481ef0825ad6192373755b3de3ea8f45 /pkgs/tools/bluetooth
parent5d2c5a920d1bb20f1f0b7f4092db87b5d735c918 (diff)
downloadnixpkgs-50bd1a0e8f388ba64b5f8fca39ed332c051ff7b2.tar
nixpkgs-50bd1a0e8f388ba64b5f8fca39ed332c051ff7b2.tar.gz
nixpkgs-50bd1a0e8f388ba64b5f8fca39ed332c051ff7b2.tar.bz2
nixpkgs-50bd1a0e8f388ba64b5f8fca39ed332c051ff7b2.tar.lz
nixpkgs-50bd1a0e8f388ba64b5f8fca39ed332c051ff7b2.tar.xz
nixpkgs-50bd1a0e8f388ba64b5f8fca39ed332c051ff7b2.tar.zst
nixpkgs-50bd1a0e8f388ba64b5f8fca39ed332c051ff7b2.zip
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.)
Diffstat (limited to 'pkgs/tools/bluetooth')
-rw-r--r--pkgs/tools/bluetooth/bluez-tools/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/tools/bluetooth/bluez-tools/default.nix b/pkgs/tools/bluetooth/bluez-tools/default.nix
new file mode 100644
index 00000000000..4469ba67b3b
--- /dev/null
+++ b/pkgs/tools/bluetooth/bluez-tools/default.nix
@@ -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 ];
+  };
+
+}