forked from mirrors/nixpkgs
* Added AEFS.
svn path=/nixpkgs/trunk/; revision=8549
This commit is contained in:
parent
3833fe53c0
commit
84680c29f1
12
pkgs/tools/security/aefs/default.nix
Normal file
12
pkgs/tools/security/aefs/default.nix
Normal 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];
|
||||
}
|
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue