nixpkgs/pkgs/tools/filesystems/securefs/default.nix
R. RyanTM f2f681d918 securefs: 0.8.1 -> 0.8.2
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/securefs/versions.

These checks were done:

- built on NixOS
- /nix/store/rbd37l5asgzjv9l2vsiyylgj841kjada-securefs-0.8.2/bin/securefs passed the binary check.
- 1 of 1 passed binary check by having a zero exit code.
- 0 of 1 passed binary check by having the new version present in output.
- found 0.8.2 with grep in /nix/store/rbd37l5asgzjv9l2vsiyylgj841kjada-securefs-0.8.2
- directory tree listing: https://gist.github.com/5aa426f3a1d68b6b2658022bc9848445
- du listing: https://gist.github.com/984ae2a71ea3f57fbfa4d993661314d4
2018-06-07 22:58:18 -07:00

38 lines
1.1 KiB
Nix

{ stdenv, fetchFromGitHub
, cmake
, fuse }:
stdenv.mkDerivation rec {
name = "securefs-${version}";
version = "0.8.2";
src = fetchFromGitHub {
sha256 = "0m3nv748g31b5nzxbwqqqjvygmz41x9vmhrjh655086g26gzrfib";
rev = version;
repo = "securefs";
owner = "netheril96";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ fuse ];
enableParallelBuilding = true;
meta = with stdenv.lib; {
inherit (src.meta) homepage;
description = "Transparent encryption filesystem";
longDescription = ''
Securefs is a filesystem in userspace (FUSE) that transparently encrypts
and authenticates data stored. It is particularly designed to secure
data stored in the cloud.
Securefs mounts a regular directory onto a mount point. The mount point
appears as a regular filesystem, where one can read/write/create files,
directories and symbolic links. The underlying directory will be
automatically updated to contain the encrypted and authenticated
contents.
'';
license = with licenses; [ bsd2 mit ];
platforms = platforms.linux;
};
}