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

                    

                    


                                                    




                                                                    



                      
                                             
 
                    
                                                         
                                                            

                               

    
{ lib, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
  pname = "dashing";
  version = "0.4.0";

  goPackagePath = "github.com/technosophos/dashing";

  src = fetchFromGitHub {
    owner = "technosophos";
    repo = pname;
    rev = version;
    sha256 = "0mhv0w5q5vpynbfi21n5i3yw2165bppdlg0amvbv86n9z4c21h89";
  };

  goDeps = ./deps.nix;

  ldflags = [ "-X main.version=${version}" ];

  meta = with lib; {
    description = "A Dash Generator Script for Any HTML";
    homepage    = "https://github.com/technosophos/dashing";
    license     = licenses.mit;
    maintainers = [ ];
  };
}