nixpkgs/pkgs/applications/networking/ipfs-migrator/default.nix

28 lines
609 B
Nix
Raw Normal View History

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 {
pname = "ipfs-migrator";
2020-12-10 18:08:09 +00:00
version = "1.7.0";
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}";
2020-12-10 18:08:09 +00:00
sha256 = "0s2mmprhhb04i8pa3lfgb61wvlrp44xnb4d08y7vd2i82lmh234b";
2017-09-30 02:06:10 +01:00
};
vendorSha256 = null;
2020-05-08 12:52:57 +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";
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
}