8 stdenv.mkDerivation rec {
12 src = fetchFromGitHub {
16 fetchSubmodules = true;
17 hash = "sha256-xuCjPSQUQ/KOcdsie/ndecUiEt+t46m4eI33PXJoAAY=";
21 substituteInPlace Makefile \
22 --replace "@git submodule update --init" "true"
25 nativeBuildInputs = [ pkg-config ];
26 buildInputs = [ libusb1 ];
34 hardeningDisable = [ "format" ];
36 installFlags = [ "PREFIX=${placeholder "out"}" ];
39 description = "Command line client for the blink(1) notification light";
40 homepage = "https://blink1.thingm.com/";
41 license = with licenses; [ cc-by-sa-40 ];
42 maintainers = with maintainers; [ cransom ];
43 platforms = platforms.linux;