2020-11-05 15:48:09 +00:00
|
|
|
{ lib, fetchFromGitHub, buildGoModule }:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "seaweedfs";
|
2020-12-01 08:29:13 +00:00
|
|
|
version = "2.13";
|
2020-11-05 15:48:09 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "chrislusf";
|
|
|
|
repo = "seaweedfs";
|
|
|
|
rev = version;
|
2020-12-01 08:29:13 +00:00
|
|
|
sha256 = "0w41p2fm26ml5dvdg2cnxcw0xzsbjq26chpa3bkn1adpazlpivp4";
|
2020-11-05 15:48:09 +00:00
|
|
|
};
|
|
|
|
|
2020-11-26 19:52:06 +00:00
|
|
|
vendorSha256 = "0g344dj325d35i0myrzhg5chspqnly40qp910ml6zrmp7iszc1mw";
|
2020-11-05 15:48:09 +00:00
|
|
|
|
|
|
|
subPackages = [ "weed" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Simple and highly scalable distributed file system";
|
|
|
|
homepage = "https://github.com/chrislusf/seaweedfs";
|
|
|
|
maintainers = [ maintainers.raboof ];
|
|
|
|
license = licenses.asl20;
|
|
|
|
};
|
|
|
|
}
|