Merge pull request #138532 from sephalon/gocryptfs
gocryptfs: support fstab mount
This commit is contained in:
commit
e0ce3c683a
@ -2,6 +2,8 @@
|
||||
, stdenv
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
, fuse
|
||||
, makeWrapper
|
||||
, openssl
|
||||
, pandoc
|
||||
, pkg-config
|
||||
@ -22,6 +24,7 @@ buildGoModule rec {
|
||||
vendorSha256 = "sha256-Q/oBT5xdLpgQCIk7KES6c8+BaCQVUIwCwVufl4oTFRs=";
|
||||
|
||||
nativeBuildInputs = [
|
||||
makeWrapper
|
||||
pkg-config
|
||||
pandoc
|
||||
];
|
||||
@ -48,6 +51,12 @@ buildGoModule rec {
|
||||
popd
|
||||
'';
|
||||
|
||||
postInstall = ''
|
||||
wrapProgram $out/bin/gocryptfs \
|
||||
--prefix PATH : ${lib.makeBinPath [ fuse ]}
|
||||
ln -s $out/bin/gocryptfs $out/bin/mount.fuse.gocryptfs
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Encrypted overlay filesystem written in Go";
|
||||
license = licenses.mit;
|
||||
|
Loading…
Reference in New Issue
Block a user