* Added AEFS.

svn path=/nixpkgs/trunk/; revision=8549
This commit is contained in:
Eelco Dolstra 2007-04-07 23:38:01 +00:00
parent 3833fe53c0
commit 84680c29f1
2 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,12 @@
{stdenv, fetchurl, fuse}:
stdenv.mkDerivation {
name = "aefs-0.3pre279";
src = fetchurl {
url = http://losser.st-lab.cs.uu.nl/~eelco/dist/aefs-0.3pre279.tar.bz2;
sha256 = "1gsa55cmhgj124m2laxcxcrgh45rsmp9jwz9wc9q515np9s7h11c";
};
buildInputs = [fuse];
}

View file

@ -218,6 +218,10 @@ rec {
### TOOLS
aefs = import ../tools/security/aefs {
inherit fetchurl stdenv fuse;
};
azureus = import ../tools/networking/p2p/azureus {
inherit fetchurl stdenv jdk swt;
};