nixpkgs/pkgs/tools/misc/blink1-tool/default.nix

31 lines
723 B
Nix
Raw Normal View History

2021-01-15 09:19:50 +00:00
{ lib, stdenv, fetchurl, libusb1, pkgconfig, ... }:
stdenv.mkDerivation rec {
pname = "blink1";
version = "1.98a";
src = fetchurl {
2018-05-28 12:59:57 +00:00
url = "https://github.com/todbot/blink1/archive/v${version}.tar.gz";
sha256 = "1waci6hccv5i50v5d3z7lx4h224fbkj66ywfynnsgn46w0jm6imv";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libusb1 ];
configurePhase = ''
cd commandline
'';
installPhase = ''
PREFIX=$out make install
'';
meta = {
description = "Command line client for the blink(1) notification light";
homepage = "https://blink1.thingm.com/";
2021-01-15 09:19:50 +00:00
license = lib.licenses.cc-by-sa-30;
maintainers = [ lib.maintainers.cransom ];
platforms = lib.platforms.linux;
};
}