nixpkgs/pkgs/tools/filesystems/aefs/default.nix

21 lines
538 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, fuse }:
2018-08-19 11:33:45 +03:00
stdenv.mkDerivation rec {
name = "aefs-0.4pre259-8843b7c";
2018-08-19 11:33:45 +03:00
src = fetchurl {
url = "http://tarballs.nixos.org/${name}.tar.bz2";
sha256 = "167hp58hmgdavg2mqn5dx1xgq24v08n8d6psf33jhbdabzx6a6zq";
};
buildInputs = [ fuse ];
meta = with lib; {
homepage = "https://github.com/edolstra/aefs";
description = "A cryptographic filesystem implemented in userspace using FUSE";
2018-08-19 11:33:45 +03:00
platforms = platforms.linux;
maintainers = [ maintainers.eelco ];
license = licenses.gpl2;
};
}