3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/networking/seaweedfs/default.nix

25 lines
607 B
Nix
Raw Normal View History

2020-11-05 15:48:09 +00:00
{ lib, fetchFromGitHub, buildGoModule }:
buildGoModule rec {
pname = "seaweedfs";
2020-12-08 05:38:04 +00:00
version = "2.14";
2020-11-05 15:48:09 +00:00
src = fetchFromGitHub {
owner = "chrislusf";
repo = "seaweedfs";
rev = version;
2020-12-08 05:38:04 +00:00
sha256 = "1sfchh5qiylxxmph0hgjfaj80mv5pnrm1s34g5lx0vj64jxr5nzb";
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;
};
}