nixpkgs/pkgs/applications/networking/seaweedfs/default.nix

33 lines
743 B
Nix
Raw Normal View History

{ lib
, fetchFromGitHub
, buildGoModule
, testVersion
, seaweedfs
}:
2020-11-05 15:48:09 +00:00
buildGoModule rec {
pname = "seaweedfs";
2022-02-15 02:29:31 +00:00
version = "2.89";
2020-11-05 15:48:09 +00:00
src = fetchFromGitHub {
owner = "chrislusf";
repo = "seaweedfs";
rev = version;
2022-02-15 02:29:31 +00:00
sha256 = "sha256-OCfgWMKFhdjdmNHnTUP2VthPxBjAVd9Z+yH/c+vF1a4=";
2020-11-05 15:48:09 +00:00
};
2022-02-15 02:29:31 +00:00
vendorSha256 = "sha256-E6bMpWzXb5dMPXkrVSJJWXJYvkmI3cNRseMgrQNpCl4=";
2020-11-05 15:48:09 +00:00
subPackages = [ "weed" ];
passthru.tests.version =
testVersion { package = seaweedfs; command = "weed version"; };
2020-11-05 15:48:09 +00:00
meta = with lib; {
description = "Simple and highly scalable distributed file system";
homepage = "https://github.com/chrislusf/seaweedfs";
2021-06-04 16:51:46 +00:00
maintainers = with maintainers; [ cmacrae raboof ];
2020-11-05 15:48:09 +00:00
license = licenses.asl20;
};
}