summary refs log tree commit diff
path: root/pkgs/tools/filesystems/aefs/default.nix
blob: 1be33e1299d20f3ebbf6ede382162f3b3f94b1b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, fetchurl, fuse }:

stdenv.mkDerivation rec {
  name = "aefs-0.4pre259-8843b7c";

  src = fetchurl {
    url = "http://tarballs.nixos.org/${name}.tar.bz2";
    sha256 = "167hp58hmgdavg2mqn5dx1xgq24v08n8d6psf33jhbdabzx6a6zq";
  };

  buildInputs = [ fuse ];

  meta = with stdenv.lib; {
    homepage = https://github.com/edolstra/aefs;
    description = "A cryptographic filesystem implemented in userspace using FUSE";
    platforms = platforms.linux;
    maintainers = [ maintainers.eelco ];
    license = licenses.gpl2;
  };
}