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