2018-02-14 12:30:08 +00:00
|
|
|
{ stdenv, buildGoPackage, fetchFromGitHub, pam }:
|
2017-09-24 00:02:18 +00:00
|
|
|
|
|
|
|
# Don't use this for anything important yet!
|
|
|
|
|
|
|
|
buildGoPackage rec {
|
|
|
|
name = "fscrypt-${version}";
|
2018-02-14 12:30:08 +00:00
|
|
|
version = "0.2.3";
|
2017-09-24 00:02:18 +00:00
|
|
|
|
|
|
|
goPackagePath = "github.com/google/fscrypt";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "google";
|
|
|
|
repo = "fscrypt";
|
2018-02-14 12:30:08 +00:00
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "126bbxim4nj56kplvyv528i88mfray50r2rc6ysblkmaw6x0fd9c";
|
2017-09-24 00:02:18 +00:00
|
|
|
};
|
|
|
|
|
2018-02-14 12:30:08 +00:00
|
|
|
buildInputs = [ pam ];
|
2017-09-24 00:02:18 +00:00
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|