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

33 lines
729 B
Nix
Raw Normal View History

{ lib
, fetchFromGitHub
, buildGoModule
, testVersion
, seaweedfs
}:
2020-11-05 15:48:09 +00:00
buildGoModule rec {
pname = "seaweedfs";
2021-03-30 18:15:57 +00:00
version = "2.36";
2020-11-05 15:48:09 +00:00
src = fetchFromGitHub {
owner = "chrislusf";
repo = "seaweedfs";
rev = version;
2021-03-30 18:15:57 +00:00
sha256 = "sha256-BVn+mV5SjyODcT+O8LXfGA42/Si5+GrdkjP0tAPiuTM=";
2020-11-05 15:48:09 +00:00
};
2021-03-30 18:15:57 +00:00
vendorSha256 = "sha256-qdgnoh+53o3idCfpkEFGK88aUVb2F6oHlSRZncs2hyY=";
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";
maintainers = [ maintainers.raboof ];
license = licenses.asl20;
};
}