2020-02-12 18:49:26 +00:00
|
|
|
{ stdenv, buildGoModule, fetchFromGitHub, gnum4, pam, fscrypt-experimental }:
|
2017-09-24 00:02:18 +00:00
|
|
|
|
|
|
|
# Don't use this for anything important yet!
|
|
|
|
|
2020-02-12 18:49:26 +00:00
|
|
|
buildGoModule rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "fscrypt";
|
2020-06-14 09:55:12 +00:00
|
|
|
version = "0.2.9";
|
2017-09-24 00:02:18 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "google";
|
|
|
|
repo = "fscrypt";
|
2019-09-12 18:58:54 +00:00
|
|
|
rev = "v${version}";
|
2020-06-14 09:55:12 +00:00
|
|
|
sha256 = "020hhdarbn3bwlc2j2g89868v8nfx8562z1a778ihpvvsa4ykr31";
|
2017-09-24 00:02:18 +00:00
|
|
|
};
|
|
|
|
|
2020-02-12 18:49:26 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace Makefile \
|
|
|
|
--replace 'TAG_VERSION := $(shell git describe --tags)' "" \
|
|
|
|
--replace "/usr/local" "$out"
|
|
|
|
'';
|
|
|
|
|
2020-05-01 01:59:00 +00:00
|
|
|
vendorSha256 = "0yak221mlyfacvlsaq9g3xiyk94n94vqgkbaji8d21pi8hhr38m6";
|
2020-02-12 18:49:26 +00:00
|
|
|
|
2020-08-04 00:26:27 +00:00
|
|
|
doCheck = false;
|
|
|
|
|
2020-02-12 18:49:26 +00:00
|
|
|
nativeBuildInputs = [ gnum4 ];
|
2018-02-14 12:30:08 +00:00
|
|
|
buildInputs = [ pam ];
|
2017-09-24 00:02:18 +00:00
|
|
|
|
2020-02-12 18:49:26 +00:00
|
|
|
buildPhase = ''
|
|
|
|
make
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
make install
|
|
|
|
'';
|
|
|
|
|
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;
|
2020-03-25 18:22:39 +00:00
|
|
|
changelog = "https://github.com/google/fscrypt/releases/tag/v${version}";
|
2017-09-24 00:02:18 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ primeos ];
|
|
|
|
};
|
2020-05-20 16:08:04 +00:00
|
|
|
}
|