blink1-tool: 1.98a -> 2.2.0

(#155037)
This commit is contained in:
Renaud 2022-01-15 13:59:09 +01:00 committed by GitHub
parent 0668257afc
commit 79b8a3e263
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,32 +1,45 @@
{ lib, stdenv, fetchFromGitHub, libusb1, pkg-config, ... }: { lib
, stdenv
, fetchFromGitHub
, pkg-config
, libusb1
}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "blink1"; pname = "blink1";
version = "1.98a"; version = "2.2.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "todbot"; owner = "todbot";
repo = "blink1"; repo = "blink1-tool";
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-o4pOF6Gp70AL63ih6BNOpRTCs7+qzeZrEqaR4hYDTG8="; fetchSubmodules = true;
hash = "sha256-xuCjPSQUQ/KOcdsie/ndecUiEt+t46m4eI33PXJoAAY=";
}; };
postPatch = ''
substituteInPlace Makefile \
--replace "@git submodule update --init" "true"
'';
nativeBuildInputs = [ pkg-config ]; nativeBuildInputs = [ pkg-config ];
buildInputs = [ libusb1 ]; buildInputs = [ libusb1 ];
configurePhase = '' makeFlags = [
cd commandline "GIT_TAG=v${version}"
''; "USBLIB_TYPE=HIDAPI"
"HIDAPI_TYPE=LIBUSB"
];
installPhase = '' hardeningDisable = [ "format" ];
PREFIX=$out make install
'';
meta = { installFlags = [ "PREFIX=${placeholder "out"}" ];
meta = with lib; {
description = "Command line client for the blink(1) notification light"; description = "Command line client for the blink(1) notification light";
homepage = "https://blink1.thingm.com/"; homepage = "https://blink1.thingm.com/";
license = lib.licenses.cc-by-sa-30; license = with licenses; [ cc-by-sa-40 ];
maintainers = [ lib.maintainers.cransom ]; maintainers = with maintainers; [ cransom ];
platforms = lib.platforms.linux; platforms = platforms.linux;
}; };
} }