2022-08-11 21:57:15 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, autoreconfHook
|
|
|
|
, fuse
|
|
|
|
, git
|
|
|
|
}:
|
2018-08-19 08:33:45 +00:00
|
|
|
|
2022-08-11 21:57:15 +00:00
|
|
|
stdenv.mkDerivation {
|
2021-08-12 18:49:29 +00:00
|
|
|
pname = "aefs";
|
2022-08-11 21:57:15 +00:00
|
|
|
version = "unstable-2015-05-06";
|
2018-08-19 08:33:45 +00:00
|
|
|
|
2022-08-11 21:57:15 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "edolstra";
|
|
|
|
repo = "aefs";
|
|
|
|
rev = "e7a9bf8cfa9166668fe1514cc1afd31fc4e10e9a";
|
|
|
|
hash = "sha256-a3YQWxJ7+bYhf1W1kdIykV8U1R4dcDZJ7K3NvNxbF0s=";
|
2007-04-07 23:38:01 +00:00
|
|
|
};
|
|
|
|
|
2021-03-27 07:03:18 +00:00
|
|
|
# autoconf's AC_CHECK_HEADERS and AC_CHECK_LIBS fail to detect libfuse on
|
|
|
|
# Darwin if FUSE_USE_VERSION isn't set at configure time.
|
|
|
|
#
|
|
|
|
# NOTE: Make sure the value of FUSE_USE_VERSION specified here matches the
|
|
|
|
# actual version used in the source code:
|
|
|
|
#
|
|
|
|
# $ tar xf "$(nix-build -A aefs.src)"
|
|
|
|
# $ grep -R FUSE_USE_VERSION
|
|
|
|
configureFlags = lib.optional stdenv.isDarwin "CPPFLAGS=-DFUSE_USE_VERSION=26";
|
|
|
|
|
2022-08-11 21:57:15 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook git ];
|
|
|
|
|
2011-02-02 15:12:15 +00:00
|
|
|
buildInputs = [ fuse ];
|
2009-01-05 14:01:42 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/edolstra/aefs";
|
2024-06-07 07:46:46 +00:00
|
|
|
description = "Cryptographic filesystem implemented in userspace using FUSE";
|
2018-08-19 08:33:45 +00:00
|
|
|
maintainers = [ maintainers.eelco ];
|
2022-08-11 21:57:15 +00:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.unix;
|
2022-08-11 23:31:33 +00:00
|
|
|
broken = stdenv.isDarwin;
|
2009-01-05 14:01:42 +00:00
|
|
|
};
|
2007-04-07 23:38:01 +00:00
|
|
|
}
|