utahfs: init at 1.0

This commit is contained in:
Illia Shestakov
2020-07-04 13:18:56 +03:00
parent b2aa673d5a
commit cd31f0d503
3 changed files with 353 additions and 0 deletions
@@ -0,0 +1,24 @@
{ buildGoPackage, lib, fetchFromGitHub }:
buildGoPackage rec {
pname = "utahfs";
version = "1.0";
src = fetchFromGitHub {
owner = "cloudflare";
repo = pname;
rev = "v${version}";
sha256 = "1hpwch5fsqlxwpk5afawa1k5s0bx5c1cw0hvdllp7257lgly19fb";
};
goPackagePath = "github.com/cloudflare/utahfs";
goDeps = ./deps.nix;
meta = with lib; {
homepage = "https://github.com/cloudflare/utahfs";
description =
"Encrypted storage system that provides a user-friendly FUSE drive backed by cloud storage";
license = licenses.bsd3;
maintainers = [ maintainers.snglth ];
platforms = platforms.unix;
};
}