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