2020-02-12 18:49:26 +00:00
|
|
|
{ stdenv, buildGoModule, fetchFromGitHub, gnum4, pam, fscrypt-experimental }:
|
2017-09-24 01:02:18 +01:00
|
|
|
|
|
|
|
# Don't use this for anything important yet!
|
|
|
|
|
2020-02-12 18:49:26 +00:00
|
|
|
buildGoModule rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "fscrypt";
|
2020-02-12 18:49:26 +00:00
|
|
|
version = "0.2.6";
|
2017-09-24 01:02:18 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "google";
|
|
|
|
repo = "fscrypt";
|
2019-09-12 19:58:54 +01:00
|
|
|
rev = "v${version}";
|
2020-02-12 18:49:26 +00:00
|
|
|
sha256 = "15pwhz4267kwhkv532k6wgjqfzawawdrrk6vnl017ys5s9ln51a8";
|
2017-09-24 01:02:18 +01:00
|
|
|
};
|
|
|
|
|
2020-02-12 18:49:26 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace Makefile \
|
|
|
|
--replace 'TAG_VERSION := $(shell git describe --tags)' "" \
|
|
|
|
--replace '$(shell date)' '$(shell date --date="@0")' \
|
|
|
|
--replace "/usr/local" "$out"
|
|
|
|
'';
|
|
|
|
|
|
|
|
modSha256 = "110b647q6ljsg5gwlciqv4cddxmk332nahcrpidrpsiqs2yjv1md";
|
|
|
|
|
|
|
|
nativeBuildInputs = [ gnum4 ];
|
2018-02-14 12:30:08 +00:00
|
|
|
buildInputs = [ pam ];
|
2017-09-24 01:02:18 +01:00
|
|
|
|
2020-02-12 18:49:26 +00:00
|
|
|
buildPhase = ''
|
|
|
|
make
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
make install
|
|
|
|
'';
|
|
|
|
|
|
|
|
preFixup = ''
|
|
|
|
remove-references-to -t ${fscrypt-experimental.go} $out/lib/security/pam_fscrypt.so
|
|
|
|
'';
|
|
|
|
|
2017-09-24 01:02:18 +01: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 ];
|
|
|
|
};
|
|
|
|
}
|