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

                    
                 
                                                        
                                                   
 




                                                    
                                                                    

    
                      



                                                                              
                                 
    
 
{ lib, buildGoPackage, fetchgit }:

with builtins;

buildGoPackage rec {
  pname = "gawp";
  version = "20160121-${lib.strings.substring 0 7 rev}";
  rev = "5db2d8faa220e8d6eaf8677354bd197bf621ff7f";

  goPackagePath = "github.com/martingallagher/gawp";

  src = fetchgit {
    inherit rev;
    url = "https://github.com/martingallagher/gawp";
    sha256 = "0bbmbb1xxdgvqvg1ssn9d4j213li7bbbx3y42iz4fs10xv7x4r0c";
  };

  goDeps = ./deps.nix;

  meta = {
    homepage = "https://github.com/martingallagher/gawp";
    description = "A simple, configurable, file watching, job execution tool";
    license = lib.licenses.asl20;
  };
}