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

25 lines
605 B
Nix
Raw Normal View History

2020-11-05 15:48:09 +00:00
{ lib, fetchFromGitHub, buildGoModule }:
buildGoModule rec {
pname = "seaweedfs";
2021-02-09 21:50:08 +00:00
version = "2.24";
2020-11-05 15:48:09 +00:00
src = fetchFromGitHub {
owner = "chrislusf";
repo = "seaweedfs";
rev = version;
2021-02-09 21:50:08 +00:00
sha256 = "sha256-nz45vCRhWhgVG2pMA6TZVUIS4d9qBWW7NtTHuEsn4pg=";
2020-11-05 15:48:09 +00:00
};
2021-02-09 21:50:08 +00:00
vendorSha256 = "sha256-v0wFlwODZt3LC+yTuNS1hAAkoedVPfTeEIvs6rUGUa4=";
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;
};
}