summary refs log tree commit diff
diff options
context:
space:
mode:
authorRenaud <c0bw3b@users.noreply.github.com>2022-01-15 13:59:09 +0100
committerGitHub <noreply@github.com>2022-01-15 13:59:09 +0100
commit79b8a3e26342acda4881c6d5a6644af9d827c349 (patch)
tree24a5c20e75985bc89d20c552c6e50680b09049b1
parent0668257afcf03dd940d299e57f3dc0b455235284 (diff)
downloadnixpkgs-79b8a3e26342acda4881c6d5a6644af9d827c349.tar
nixpkgs-79b8a3e26342acda4881c6d5a6644af9d827c349.tar.gz
nixpkgs-79b8a3e26342acda4881c6d5a6644af9d827c349.tar.bz2
nixpkgs-79b8a3e26342acda4881c6d5a6644af9d827c349.tar.lz
nixpkgs-79b8a3e26342acda4881c6d5a6644af9d827c349.tar.xz
nixpkgs-79b8a3e26342acda4881c6d5a6644af9d827c349.tar.zst
nixpkgs-79b8a3e26342acda4881c6d5a6644af9d827c349.zip
blink1-tool: 1.98a -> 2.2.0
 (#155037)
-rw-r--r--pkgs/tools/misc/blink1-tool/default.nix41
1 files changed, 27 insertions, 14 deletions
diff --git a/pkgs/tools/misc/blink1-tool/default.nix b/pkgs/tools/misc/blink1-tool/default.nix
index fc82d824497..44cfa2fbfe7 100644
--- a/pkgs/tools/misc/blink1-tool/default.nix
+++ b/pkgs/tools/misc/blink1-tool/default.nix
@@ -1,32 +1,45 @@
-{ lib, stdenv, fetchFromGitHub, libusb1, pkg-config, ... }:
+{ lib
+, stdenv
+, fetchFromGitHub
+, pkg-config
+, libusb1
+}:
 
 stdenv.mkDerivation rec {
   pname = "blink1";
-  version = "1.98a";
+  version = "2.2.0";
 
   src = fetchFromGitHub {
     owner = "todbot";
-    repo = "blink1";
+    repo = "blink1-tool";
     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 ];
   buildInputs = [ libusb1 ];
 
-  configurePhase = ''
-    cd commandline
-  '';
+  makeFlags = [
+    "GIT_TAG=v${version}"
+    "USBLIB_TYPE=HIDAPI"
+    "HIDAPI_TYPE=LIBUSB"
+  ];
 
-  installPhase = ''
-    PREFIX=$out make install
-  '';
+  hardeningDisable = [ "format" ];
+
+  installFlags = [ "PREFIX=${placeholder "out"}" ];
 
-  meta = {
+  meta = with lib; {
     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;
+    license = with licenses; [ cc-by-sa-40 ];
+    maintainers = with maintainers; [ cransom ];
+    platforms = platforms.linux;
   };
 }