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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

46 lines
971 B
Nix
Raw Normal View History

2022-01-15 13:59:09 +01:00
{ lib
, stdenv
, fetchFromGitHub
, pkg-config
, libusb1
}:
stdenv.mkDerivation rec {
pname = "blink1";
2022-01-15 13:59:09 +01:00
version = "2.2.0";
2021-12-13 15:33:42 +01:00
src = fetchFromGitHub {
owner = "todbot";
2022-01-15 13:59:09 +01:00
repo = "blink1-tool";
2021-12-13 15:33:42 +01:00
rev = "v${version}";
2022-01-15 13:59:09 +01:00
fetchSubmodules = true;
hash = "sha256-xuCjPSQUQ/KOcdsie/ndecUiEt+t46m4eI33PXJoAAY=";
};
2022-01-15 13:59:09 +01:00
postPatch = ''
substituteInPlace Makefile \
--replace "@git submodule update --init" "true"
'';
2021-01-17 04:51:22 +01:00
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libusb1 ];
2022-01-15 13:59:09 +01:00
makeFlags = [
"GIT_TAG=v${version}"
"USBLIB_TYPE=HIDAPI"
"HIDAPI_TYPE=LIBUSB"
];
2022-01-15 13:59:09 +01:00
hardeningDisable = [ "format" ];
installFlags = [ "PREFIX=${placeholder "out"}" ];
2022-01-15 13:59:09 +01:00
meta = with lib; {
description = "Command line client for the blink(1) notification light";
homepage = "https://blink1.thingm.com/";
2022-01-15 13:59:09 +01:00
license = with licenses; [ cc-by-sa-40 ];
maintainers = with maintainers; [ cransom ];
platforms = platforms.linux;
};
}