summary refs log blame commit diff
path: root/pkgs/tools/misc/blink1-tool/default.nix
blob: 23096bb2eafca9b2d4b539a8f342e69147bb50db (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                    

                         
                   
                    

                  
                                                                        
                                                                    

    
                                     
                            










                                                                            
                                            


                                              

    
{ lib, stdenv, fetchurl, libusb1, pkg-config, ... }:

stdenv.mkDerivation rec {
  pname = "blink1";
  version = "1.98a";

  src = fetchurl {
    url = "https://github.com/todbot/blink1/archive/v${version}.tar.gz";
    sha256 = "1waci6hccv5i50v5d3z7lx4h224fbkj66ywfynnsgn46w0jm6imv";
  };

  nativeBuildInputs = [ pkg-config ];
  buildInputs = [ libusb1 ];

  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 = lib.licenses.cc-by-sa-30;
    maintainers = [ lib.maintainers.cransom ];
    platforms = lib.platforms.linux;
  };
}