blink1-tool: init at 1.98

The command line tool for the blink(1) notification light.
This commit is contained in:
Casey Ransom 2016-07-24 16:45:04 -04:00
parent 0b05a16070
commit 59b32b92e0
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,29 @@
{ stdenv, fetchurl, libusb1, pkgconfig, ... }:
stdenv.mkDerivation rec {
name = "blink1-${version}";
version = "v1.98";
src = fetchurl {
url = "https://github.com/todbot/blink1/archive/${version}.tar.gz";
sha256 = "05hbnp20cdvyyqf6jr01waz1ycis20qzsd8hn27snmn6qd48igrb";
};
buildInputs = [ libusb1 pkgconfig ];
configurePhase = ''
cd commandline
'';
installPhase = ''
PREFIX=$out make install
'';
meta = {
description = "Command line client for the blink(1) notification light";
homepage = https://blink1.thingm.com/;
license = stdenv.lib.licenses.cc-by-sa-30;
maintainers = [ stdenv.lib.maintainers.cransom ];
platforms = stdenv.lib.platforms.linux;
};
}

View File

@ -592,6 +592,8 @@ in
gnutls = gnutls33;
};
blink1-tool = callPackage ../tools/misc/blink1-tool { };
blitz = callPackage ../development/libraries/blitz { };
blockdiag = pythonPackages.blockdiag;