mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 21:50:55 +00:00
30 lines
719 B
Nix
30 lines
719 B
Nix
|
{ stdenv, fetchurl, libusb1, pkgconfig, ... }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
name = "blink1-${version}";
|
||
|
version = "v1.98";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/todbot/blink1/archive/${version}.tar.gz";
|
||
|
sha256 = "05hbnp20cdvyyqf6jr01waz1ycis20qzsd8hn27snmn6qd48igrb";
|
||
|
};
|
||
|
|
||
|
buildInputs = [ libusb1 pkgconfig ];
|
||
|
|
||
|
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 = stdenv.lib.licenses.cc-by-sa-30;
|
||
|
maintainers = [ stdenv.lib.maintainers.cransom ];
|
||
|
platforms = stdenv.lib.platforms.linux;
|
||
|
};
|
||
|
}
|