summary refs log blame commit diff
path: root/pkgs/os-specific/linux/fscrypt/default.nix
blob: 8efef4fac4bd5859aab8f70719596875b383c9f9 (plain) (tree)
1
2
3
4
5
6
7





                                                            
                    






                                              
                                                                    

















                                                                                
{ stdenv, buildGoPackage, fetchFromGitHub, libargon2, pam }:

# Don't use this for anything important yet!

buildGoPackage rec {
  name = "fscrypt-${version}";
  version = "0.2.2";

  goPackagePath = "github.com/google/fscrypt";

  src = fetchFromGitHub {
    owner = "google";
    repo = "fscrypt";
    rev = version;
    sha256 = "0a85vj1zsybhzvvgdvlw6ywh2a6inmrmc95pfa1js4vkx0ixf1kh";
  };

  buildInputs = [ libargon2 pam ];

  meta = with stdenv.lib; {
    description =
      "A high-level tool for the management of Linux filesystem encryption";
    longDescription = ''
      This tool manages metadata, key generation, key wrapping, PAM integration,
      and provides a uniform interface for creating and modifying encrypted
      directories.
    '';
    inherit (src.meta) homepage;
    license = licenses.asl20;
    platforms = platforms.linux;
    maintainers = with maintainers; [ primeos ];
  };
}