depot/third_party/nixpkgs/pkgs/tools/misc/blink1-tool/default.nix
Default email 893b09d324 Project import generated by Copybara.
GitOrigin-RevId: eac07edbd20ed4908b98790ba299250b5527ecdf
2021-12-24 12:21:11 +08:00

32 lines
733 B
Nix

{ lib, stdenv, fetchFromGitHub, libusb1, pkg-config, ... }:
stdenv.mkDerivation rec {
pname = "blink1";
version = "1.98a";
src = fetchFromGitHub {
owner = "todbot";
repo = "blink1";
rev = "v${version}";
sha256 = "sha256-o4pOF6Gp70AL63ih6BNOpRTCs7+qzeZrEqaR4hYDTG8=";
};
nativeBuildInputs = [ pkg-config ];
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/";
license = lib.licenses.cc-by-sa-30;
maintainers = [ lib.maintainers.cransom ];
platforms = lib.platforms.linux;
};
}