2021-01-25 08:26:54 +00:00
|
|
|
{ lib, 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";
|
2021-10-18 21:48:44 +01:00
|
|
|
version = "0.3.1";
|
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}";
|
2021-10-18 21:48:44 +01:00
|
|
|
sha256 = "0gi91vm0ai4vjzj6cfnjsfy8kbfxjiq2n7jnbhf5470qbx49qixr";
|
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 "/usr/local" "$out"
|
|
|
|
'';
|
|
|
|
|
2021-10-18 21:48:44 +01:00
|
|
|
vendorSha256 = "1gw3q2pn8v6n9wkl5881rbxglislnr98a9gjqnqm894gnz7hfdzb";
|
2020-02-12 18:49:26 +00:00
|
|
|
|
2020-08-04 01:26:27 +01: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 01:02:18 +01:00
|
|
|
|
2020-02-12 18:49:26 +00:00
|
|
|
buildPhase = ''
|
|
|
|
make
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
make install
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-09-24 01:02:18 +01:00
|
|
|
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 01:02:18 +01:00
|
|
|
license = licenses.asl20;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ primeos ];
|
|
|
|
};
|
2020-05-20 17:08:04 +01:00
|
|
|
}
|