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



                 
 
                   
                    
                    
 
                         

                      
                  
                                                                   

    
                    
 
                    
                                                                          
                                                       
                                                                             
                            


                                                
{ lib
, buildGoModule
, fetchFromGitHub
}:

buildGoModule rec {
  pname = "elfinfo";
  version = "1.2.2";

  src = fetchFromGitHub {
    owner = "xyproto";
    repo = "elfinfo";
    rev = version;
    sha256 = "sha256-HnjHOjanStqmDXnc6Z9w0beCMJFf/ndWbYxoDEaOws4=";
  };

  vendorHash = null;

  meta = with lib; {
    description = "Small utility for showing information about ELF files";
    homepage = "https://elfinfo.roboticoverlords.org/";
    changelog = "https://github.com/xyproto/elfinfo/releases/tag/${version}";
    license = licenses.bsd3;
    maintainers = with maintainers; [ dtzWill ];
  };
}