2012-05-13 01:47:58 +01:00
|
|
|
{ stdenv, fetchurl, fuse }:
|
2018-08-19 09:33:45 +01:00
|
|
|
|
2011-02-02 15:12:15 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2012-05-13 01:47:58 +01:00
|
|
|
name = "aefs-0.4pre259-8843b7c";
|
2018-08-19 09:33:45 +01:00
|
|
|
|
2007-04-08 00:38:01 +01:00
|
|
|
src = fetchurl {
|
2013-06-25 13:05:48 +01:00
|
|
|
url = "http://tarballs.nixos.org/${name}.tar.bz2";
|
2012-05-13 01:47:58 +01:00
|
|
|
sha256 = "167hp58hmgdavg2mqn5dx1xgq24v08n8d6psf33jhbdabzx6a6zq";
|
2007-04-08 00:38:01 +01:00
|
|
|
};
|
|
|
|
|
2011-02-02 15:12:15 +00:00
|
|
|
buildInputs = [ fuse ];
|
2009-01-05 14:01:42 +00:00
|
|
|
|
2018-08-19 09:33:45 +01:00
|
|
|
meta = with stdenv.lib; {
|
2019-04-22 09:14:28 +01:00
|
|
|
homepage = https://github.com/edolstra/aefs;
|
2009-01-05 14:01:42 +00:00
|
|
|
description = "A cryptographic filesystem implemented in userspace using FUSE";
|
2018-08-19 09:33:45 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.eelco ];
|
|
|
|
license = licenses.gpl2;
|
2009-01-05 14:01:42 +00:00
|
|
|
};
|
2007-04-08 00:38:01 +01:00
|
|
|
}
|