summary refs log blame commit diff
path: root/pkgs/applications/networking/ipfs-migrator/default.nix
blob: abc81e213d7dd29f245e3e145fd7eed27bdd94c9 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                        
 
                   
                          
                    



                                
                        
                                                                   

    
                      
 

                  
                        
 

                                                                             
                                  



                                               
 
{ lib, buildGoModule, fetchFromGitHub }:

buildGoModule rec {
  pname = "ipfs-migrator";
  version = "1.7.1";

  src = fetchFromGitHub {
    owner = "ipfs";
    repo = "fs-repo-migrations";
    rev = "v${version}";
    sha256 = "sha256-MxEKmoveIpuxBkGGGJHp9T11i3Py8a1fLpF0fWk0ftg=";
  };

  vendorSha256 = null;

  doCheck = false;

  subPackages = [ "." ];

  meta = with lib; {
    description = "Migrations for the filesystem repository of ipfs clients";
    homepage = "https://ipfs.io/";
    license = licenses.mit;
    platforms = platforms.unix;
    maintainers = with maintainers; [ elitak ];
  };
}