nixpkgs/pkgs/os-specific/linux/fscrypt/default.nix

52 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv, buildGoModule, fetchFromGitHub, gnum4, pam, fscrypt-experimental }:
2017-09-24 00:02:18 +00:00
# Don't use this for anything important yet!
buildGoModule rec {
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
};
postPatch = ''
substituteInPlace Makefile \
--replace 'TAG_VERSION := $(shell git describe --tags)' "" \
--replace "/usr/local" "$out"
'';
vendorSha256 = "0yak221mlyfacvlsaq9g3xiyk94n94vqgkbaji8d21pi8hhr38m6";
doCheck = false;
nativeBuildInputs = [ gnum4 ];
2018-02-14 12:30:08 +00:00
buildInputs = [ pam ];
2017-09-24 00:02:18 +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
}