2020-05-08 04:52:57 -07:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2017-09-29 18:06:10 -07:00
|
|
|
|
2020-05-08 04:52:57 -07:00
|
|
|
buildGoModule rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "ipfs-migrator";
|
2020-05-08 04:52:57 -07:00
|
|
|
version = "1.5.1";
|
2017-09-29 18:06:10 -07:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ipfs";
|
|
|
|
repo = "fs-repo-migrations";
|
2020-05-08 04:52:57 -07:00
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "18pjxkxfbsbbj4hs4xyzfmmz991h31785ldx41dll6wa9zx4lsnm";
|
2017-09-29 18:06:10 -07:00
|
|
|
};
|
|
|
|
|
2020-04-30 18:59:00 -07:00
|
|
|
vendorSha256 = null;
|
2020-05-08 04:52:57 -07:00
|
|
|
|
|
|
|
subPackages = [ "." ];
|
2017-09-29 18:06:10 -07:00
|
|
|
|
2020-05-08 04:52:57 -07:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Migrations for the filesystem repository of ipfs clients";
|
2020-04-02 13:01:48 -07:00
|
|
|
homepage = "https://ipfs.io/";
|
2017-09-29 18:06:10 -07:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ elitak ];
|
|
|
|
};
|
2020-04-30 18:59:00 -07:00
|
|
|
}
|