Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3c453add934e
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 9f0f5392745f
Choose a head ref
  • 2 commits
  • 3 files changed
  • 2 contributors

Commits on Jul 4, 2020

  1. utahfs: init at 1.0

    snglth committed Jul 4, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    blink1073 Steven Silvester
    Copy the full SHA
    cd31f0d View commit details

Commits on Jul 5, 2020

  1. Merge pull request #91060 from snglth/utahfs-1.0

    utahfs: init at 1.0
    veprbl authored Jul 5, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    blink1073 Steven Silvester
    Copy the full SHA
    9f0f539 View commit details
Showing with 353 additions and 0 deletions.
  1. +24 −0 pkgs/applications/networking/utahfs/default.nix
  2. +327 −0 pkgs/applications/networking/utahfs/deps.nix
  3. +2 −0 pkgs/top-level/all-packages.nix
24 changes: 24 additions & 0 deletions pkgs/applications/networking/utahfs/default.nix
Original file line number Diff line number Diff line change
@@ -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;
};
}
327 changes: 327 additions & 0 deletions pkgs/applications/networking/utahfs/deps.nix

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -3209,6 +3209,8 @@ in

vorta = python3Packages.callPackage ../applications/backup/vorta { };

utahfs = callPackage ../applications/networking/utahfs { };

wallutils = callPackage ../tools/graphics/wallutils { };

wev = callPackage ../tools/misc/wev { };