Add unionfs-fuse

This commit is contained in:
Shea Levy 2012-12-15 20:32:10 -05:00
parent 88e43775fd
commit 42b061d118
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,13 @@
{ stdenv, fetchurl, cmake, fuse }:
stdenv.mkDerivation rec {
name = "unionfs-fuse-0.26";
src = fetchurl {
url = "http://podgorny.cz/unionfs-fuse/releases/${name}.tar.xz";
sha256 = "0qpnr4czgc62vsfnmv933w62nq3xwcbnvqch72qakfgca75rsp4d";
};
buildInputs = [ cmake fuse ];
}

View file

@ -553,6 +553,8 @@ let
unifdef = callPackage ../development/tools/misc/unifdef { };
unionfs-fuse = callPackage ../tools/filesystems/unionfs-fuse { };
usb_modeswitch = callPackage ../development/tools/misc/usb-modeswitch { };
clamav = callPackage ../tools/security/clamav { };